home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / dosref.EXE / CHAPTER.003 < prev    next >
Text File  |  1996-01-31  |  137KB  |  3,098 lines

  1.  
  2.    **  Programmer's Technical Reference for MSDOS and the IBM PC **
  3.  
  4.                       C H A P T E R    T H R E E
  5.  
  6.  
  7.     R O M    B I O S   A N D   S E R V I C E   I N T E R R U P T S
  8.  
  9.  
  10.                             C O N T E N T S
  11.  
  12.  
  13. Calling the ROM BIOS ............................................ 3**1
  14. Interrupt 10h  Video Services ................................... 3**2
  15. Interrupt 11h  Equipment Check .................................. 3**3
  16. Interrupt 12h  Memory Size ...................................... 3**4
  17. Interrupt 13h  Disk Functions ................................... 3**5
  18. Interrupt 14h  Initialize and Access Serial Port ................ 3**6
  19.                FOSSIL Drivers ................................... 3**7
  20. Interrupt 15h  Cassette I/O ..................................... 3**8
  21. Interrupt 16h  Keyboard I/O ..................................... 3**9
  22. Interrupt 17h  Printer .......................................... 3**10
  23. Interrupt 18h  ROM BASIC ........................................ 3**11
  24. Interrupt 19h  Bootstrap Loader ................................. 3**12
  25. Interrupt 1Ah  Time of Day ...................................... 3**13
  26. Interrupt 1Bh  Control-Break .................................... 3**14
  27. Interrupt 1Ch  Timer Tick ....................................... 3**15
  28. Interrupt 1Dh  Vector of Video Initialization Parameters ........ 3**16
  29. Interrupt 1Eh  Vector of Diskette Controller Parameters ......... 3**17
  30. Interrupt 1Fh  Ptr to Graphics Char Extensions (Graphics Set 2) . 3**18
  31.  
  32.  
  33.  
  34.   The ROM BIOS is the lowest level of software access.  It contains 
  35. the following routines: 
  36.  
  37.    (all)
  38.         power-on self-test (POST)
  39.         boostrap loader
  40.         clock
  41.         floppy disk I/O
  42.         video I/O
  43.         keyboard
  44.         serial ports
  45.         parallel ports
  46.         print screen
  47.         equipment check
  48.         report memory size
  49.  
  50.  
  51.     (AT)
  52.         hard disk I/O
  53.         report memory size (extended memory)
  54.         extended memory block moves
  55.         enhanced video and keyboard I/O
  56.         high resolution timer
  57.         alarm
  58.  
  59.   Machines such as the PC Convertible, PCjr, and non-IBM machines add 
  60. additional functions. 
  61.  
  62.  
  63. Calling the ROM BIOS ............................................ 3**1
  64.  
  65.   The BIOS services are invoked by placing the number of the desired 
  66. function in register AH, subfunction in AL, setting the other 
  67. registers to any specific requirements of the function, and invoking 
  68. any of ints 10h through int 1Fh. 
  69.  
  70.   The original IBM PC Technical Reference gave the absolute addresses 
  71. of the ROM routines.  Some early software jumped directly to these 
  72. addresses, with mixed results on non-IBM BIOSes.  This practice was 
  73. common on machines predating the PC, but there is no practical use for 
  74. it now.  The OS/2 1.x Compatibility Box also does not support jumping 
  75. directly into the ROM. 
  76.  
  77.   When the interrupt is called, all register and flag values are 
  78. pushed into the stack.  The interrupt address contains a pointer into 
  79. an absolute address in the ROM BIOS chip address space.  This location 
  80. may be further vectored into the IBMBIO.COM (or equivalent) file or 
  81. user file. 
  82.  
  83.   At power-up, many BIOSes point unused interrupt vectors to zero.  
  84. Others point to an interrupt handler routine, usually just an IRET 
  85. instruction.  Still others don't even make an attempt to initialize 
  86. unused vectors.  A common programming mistake is to expect 
  87. uninitialized vectors will be zero. 
  88.  
  89.   The address vector points to a particular BIOS command handler.  The 
  90. handler pops the register values, compares them to its list of 
  91. functions, and executes the function if valid.  When the function is 
  92. complete, it may pass values back to the command handler.  The handler 
  93. will push the values into the stack and then return control to the 
  94. calling program. 
  95.  
  96.   Most functions will return an error code; some return more 
  97. information.  Details are contained in the listings for the individual 
  98. functions. 
  99.  
  100.   Register settings listed are the ones used by the BIOS.  Some 
  101. functions will return with garbage values in unused registers.  Do not 
  102. test for values in unspecified registers; your program may exhibit odd 
  103. behavior. 
  104.  
  105.  
  106.   Three sets of BIOS routines are available: PC BIOS, AT BIOS (also 
  107. called CBIOS or "Old compatibility BIOS", and the PS/2 ABIOS "Advanced 
  108. BIOS". 
  109.  
  110.   The Advanced BIOS is contained in PS/2 ROMs.  It is primarily 
  111. intended for OS use rather than application use.  OS/2 can take 
  112. advantage of ABIOS routines to reduce RAM use on PS/2 systems.  The 
  113. ABIOS can be replaced by disk and RAM based ABIOS code if desired.  
  114. There is a new BIOS Data Area defined in high memory that occupies one 
  115. K of RAM.  In OS/2 systems, parts of the ABIOS are replaced by OS/2 
  116. drivers. 
  117.  
  118.   While the CBIOS must be addressed via pointers, the routines in the 
  119. ABIOS are fixed in absolute locations so they can be referenced 
  120. directly by OS/2. 
  121.  
  122.   The ABIOS can run in protected mode, and is fully reentrant.  It 
  123. supports three types of function requests - single staged, discrete 
  124. multistaged, or continuous multistaged.  A single-staged request does 
  125. its job immediately and returns control to the caller.  A discrete 
  126. multistaged request may happen in two or more stages with pauses 
  127. between the stages.  The caller may regain control during the pauses.  
  128. A continuous multistaged request starts a staged operation that never 
  129. ends. (sometimes called a daemon). 
  130.  
  131.   Unlike the CBIOS which is called with software interrupts, ABIOS is 
  132. accessed with FAR calls.  ABIOS calls are completely reentrant in both 
  133. real and protected modes.  To call an ABIOS function, the calling 
  134. program must pass pointers to two data structures - a request block 
  135. and a common data area.  The request block specifies the desired 
  136. function number and the common data area is a table that contains 
  137. pointers to all the ABIOS' other tables and data areas.  The common 
  138. data area's internal structure contains the function transfer tables 
  139. which have the addresses of the BIOS routines. 
  140.  
  141. ABIOS stack frame and calling conventions:
  142.        bytes        stack contents
  143.         2       common data area pointer (segment/selector only)
  144.                 required
  145.         4       request block pointer - required
  146.         4       function transfer table pointer - furnished by ABIOS
  147.                 or caller
  148.         4       device block pointer - furnished by ABIOS or caller
  149.         4       return address
  150.  
  151.   In ABIOS Transfer Convention, only the first two items are required. 
  152. ABIOS assigns the second two.  In Operating System Transfer 
  153. Convention, the caller provides the second two.  Since the parameters 
  154. are not removed from the stack on return to the caller, the operating 
  155. system may save the function transfer table and device addresses after 
  156. they have been furnished by the ABIOS by a call. 
  157.  
  158.   ABIOS does no interrupt arbitration.  It assumes all interrupts are 
  159. handled by the caller or the OS and it is called only for service.  If 
  160. more than one device is sharing a hardware interrupt, the OS must 
  161. determine which interrupt is valid for the ABIOS. 
  162.  
  163.   OS/2 may use the ABIOS if found, but otherwise duplicates the BIOS 
  164. calls for the DOS Compatibility Box by vectoring BIOS calls into its 
  165. own device drivers.  This makes it rather difficult for DOS drivers 
  166. for mass storage, high resolution video boards, multitasking APIs 
  167. using int 15h, etc.  If your software needs to manipulate hardware 
  168. directly you might want to check if your code is running under OS/2.  
  169. The simplest method is to check for DOS version 10 or higher. 
  170.  
  171.  
  172. note    Some references list an "XT/2" machine, which was reputedly
  173.         an 8mHz 8088 with 640k and a clock on the motherboard.  IBM
  174.         doesn't list such a machine, and I have a late '86 XT, one of
  175.         the last made.  It is pretty much like the older ones.
  176.  
  177.  
  178. ┌─────────────────────────────────────────────────────────────────────┐
  179. │Interrupt 10h  Video Services                                  3**2  │
  180. └─────────────────────────────────────────────────────────────────────┘
  181. (0:0040h)       The BIOS Video Services may be found in Chapter 16.
  182.  
  183. (internal) Coprocessor Error (80286+)
  184.         Generated by the CPU when the -ERROR pin is asserted by the 
  185.         coprocessor (usually 80x87, but may be any multimaster CPU or
  186.         alternate NDP such as Weitek, etc.).  ATs and clones usually
  187.         wire the coprocessor to use IRQ13, but not all get it right. 
  188.  
  189.  
  190. ┌─────────────────────────────────────────────────────────────────────┐
  191. │Interrupt 11h  Equipment Check                                 3**3  │
  192. └─────────────────────────────────────────────────────────────────────┘
  193. (0:0044h)       Reads the BIOS Data Area and returns two bytes of setup
  194.                 information.
  195. entry   no parameters are required
  196. return  AX      Equipment listing word. Bits are:
  197.                 0       number of floppy drives
  198.                         0       no drives
  199.                         1       bootable (IPL) diskette drive installed
  200.                 1       math chip
  201.                         0       no math coprocessor (80x87) present
  202.                         1       math coprocessor (80x87) present
  203.          (PS/2) 2       0       mouse not installed
  204.                         1       mouse installed
  205.           (PC)  2,3     system board RAM
  206.                         0,0     16k    (PC-0, PC-1)
  207.                         0,1     32k
  208.                         1,0     48k
  209.                         1,1     64k    (PC-2, XT)
  210.                         note 1) not commonly used. Set both bits to 1
  211.                              2) both bits always 1 in AT
  212.                 4,5     initial video mode
  213.                         0,0     no video installed
  214.                                 (use with dumb terminal)
  215.                         0,1     40x25 color      (CGA)
  216.                         1,0     80x25 color
  217.                                 (CGA, EGA, PGA, MCGA, VGA)
  218.                         1,1     80x25 monochrome (MDA or Hercules,
  219.                                 most super-hires mono systems)
  220.                 6,7     number of diskette drives (only if bit 0 is 1)
  221.                         0,0     1 drives
  222.                         0,1     2 drives
  223.                         1,0     3 drives
  224.                         1,1     4 drives
  225.                 8       0       DMA present
  226.                         1       no DMA (PCjr, some Tandy 1000s, 1400LT)
  227.                 9,A,B   number of RS232 serial ports (0-3)
  228.                         0,0,0   none
  229.                         0,0,1   1
  230.                         0,1,0   2
  231.                         0,1,1   3
  232.                         1,0,0   4
  233.                 C       0       no game I/O attached
  234.                         1       game I/O attached (default for PCjr)
  235.                 D       serial accessory installation
  236.                         0       no serial accessories installed
  237.                         1       Convertible - internal modem installed
  238.                                 or PCjr - serial printer attached
  239.                 E,F     number of parallel printers
  240.                         0,0     none
  241.                         0,1     one   (LPT1, PRN)
  242.                         1,0     two   (LPT2)
  243.                         1,1     three (LPT3)
  244.                         note    Models before PS/2 would allow a fourth
  245.                                 parallel printer.  Remapping of the
  246.                                 BIOS in the PS/2s does not allow the
  247.                                 use of LPT4.
  248.         (386 extended AX)
  249.                 23d     0       Weitek ABACUS - virtual '86 EMS page
  250.                                 tables not correctly initialized
  251.                         1       Weitek ABACUS - virtual '86 EMS page
  252.                                 tables OK
  253.  
  254.                 24d     0       Weitek ABACUS NDP not present
  255.                         1       Weitek ABACUS NDP present
  256.  
  257. note    Not all BIOSes properly return the presence of a game port.
  258.         In my experience, most BIOSes require a joystick to actually
  259.         be present even if the port is otherwise enabled.
  260.  
  261.  
  262.  
  263. ┌─────────────────────────────────────────────────────────────────────┐
  264. │Interrupt 12h  Memory Size                                     3**4  │
  265. └─────────────────────────────────────────────────────────────────────┘
  266. (0:0048h)       get amount of system memory
  267. entry   no parameters required
  268. return  AX      number of contiguous 1K RAM blocks available for DOS
  269. note 1) This is the same value stored in absolute address 04:13h.
  270.      2) For some early PC models, the amount of memory returned by this
  271.         call is determined by the settings of the DIP switches on the
  272.         motherboard and may not reflect all the memory that is
  273.         physically present.
  274.      3) For the PC/AT, the value returned is the amount of functional
  275.         memory found during the power-on self-test, regardless of the
  276.         memory size configuration information stored in CMOS RAM.
  277.      4) The value returned does not reflect any extended memory (above
  278.         the 1 Mb boundary) that may be present on machines using 80286
  279.         or later microprocessors.
  280.  
  281.  
  282.  
  283. ┌─────────────────────────────────────────────────────────────────────┐
  284. │Interrupt 13h  Disk Functions                                  3**5  │
  285. └─────────────────────────────────────────────────────────────────────┘
  286. (0:0049h)       The service calls for BIOS disk functions are located
  287.                 in Chapter 8.
  288.  
  289.  
  290.  
  291.  
  292. ┌─────────────────────────────────────────────────────────────────────┐
  293. │Interrupt 14h  Initialize and Access Serial Port For Int 14    3**6  │
  294. └─────────────────────────────────────────────────────────────────────┘
  295. Note 1) Some IBM PS/2 Model 50Z machines were delivered with serial
  296.         ports that did not meet specification.  Some cheap clone serial
  297.         ports may also be troublesome.
  298.      2) The standard IBM serial routines are unbuffered and not
  299.         interrupt driven.  They are fairly useless for anything other
  300.         than serial printers.  Most application software either
  301.         programs the UARTs directly or use a driver with a high-level
  302.         interface such as a FOSSIL.
  303.      3) PC-MOS/386' $SERIAL.SYS driver is buffered, device-independent,
  304.         and interrupt-driven.  It supports COM1 through COM24.
  305.  
  306. (0:0050h)       the following status is defined:
  307.  
  308.         serial status byte:
  309.         bits    0 delta clear to send
  310.                 1 delta data set ready
  311.                 2 trailing edge ring detector
  312.                 3 delta receive line signal detect
  313.                 4 clear to send
  314.                 5 data set ready
  315.                 6 ring indicator
  316.                 7 receive line signal detect
  317.  
  318.         line status byte:
  319.         bits    0 data ready
  320.                 1 overrun error
  321.                 2 parity error
  322.                 3 framing error
  323.                 4 break detect
  324.                 5 transmit holding register empty
  325.                 6 transmit shift register empty
  326.                 7 time out
  327.  
  328.    note: if bit 7 set then other bits are invalid
  329.  
  330.         Though present on the IBM PS/2s, COM3 and COM4 are not widely
  331.         standardized across the industry. The most common definitions
  332.         are:
  333.  
  334.         port    addr.   IRQ     interrupt
  335.  
  336.         COM1    3F8     IRQ4    int 0Ch
  337.         COM2    2F8     IRQ3    int 0Bh
  338.         COM3    3E8     IRQ4    int 0Ch
  339.         COM4    2E8     IRQ3    int 0Bh
  340.  
  341.         As you can see, COM1/COM3 and COM2/COM4 are siamesed.  Since
  342.         the ISA bus does not support shared interrupts, simultaneous
  343.         access of two of a pair may cause conflict.  For example, a
  344.         mouse and a modem would not coexist well on paired ports.
  345.  
  346.  
  347.  All routines have AH=function number and DX=RS232 card number (0 
  348. based). AL=character to send or received character on exit, unless 
  349. otherwise noted. 
  350.  
  351. entry   AH      00h     Initialize and Access Serial Port
  352.                         bit pattern: BBBPPSLL
  353.                         BBB = baud rate:   110, 150, 300, 600, 1200,
  354.                                            2400, 4800, 9600
  355.                         PP  = parity:      01 = odd, 11 = even
  356.                         S   = stop bits:   0 = 1, 1 = 2
  357.                         LL  = word length: 10 = 7-bits, 11 = 8-bits
  358.         AL      parms for initialization:
  359.                 bit pattern:
  360.                 0       word length
  361.                 1       word length
  362.                 2       stop bits
  363.                 3       parity
  364.                 4       parity
  365.                 5       baud rate
  366.                 6       baud rate
  367.                 7       baud rate
  368.                 word length     10      7 bits
  369.                                 11      8 bits
  370.                 stop bits       0       1 stop bit
  371.                                 1       2 stop bits
  372.                 parity          00      none
  373.                                 01      odd
  374.                                 11      even
  375.                 baud rate       000     110 baud
  376.                                 001     150 baud
  377.                                 010     300 baud
  378.                                 011     600 baud
  379.                                 100     1200 baud
  380.                                 101     2400 baud
  381.                                 110     4800 baud
  382.                                 111     9600 baud  (4800 on PCjr)
  383.         DX      port number (0=COM1, 1=COM2, etc.)
  384. return  AH      line status
  385.         AL      modem status
  386. note    To initialize the serial port to more than 9600 baud on PS/2
  387.         machines, see functions 04h and 05h.
  388.  
  389.  
  390. Function 01h    Send Character in AL to Comm Port
  391. entry   AH      01h
  392.         AL      character
  393.         DX      port number (0 - 3)
  394. return  AH      RS232 status code
  395.                 bit     0       data ready
  396.                         1       overrun error
  397.                         2       parity error
  398.                         3       framing error
  399.                         4       break detected
  400.                         5       transmission buffer register empty
  401.                         6       transmission shift register empty
  402.                         7       timeout
  403.         AL      modem status
  404.                 bit
  405.                         0       delta clear-to-send
  406.                         1       delta data-set-ready
  407.                         2       trailing edge ring detected
  408.                         3       change, receive line signal detected
  409.                         4       clear-to-send
  410.                         5       data-set-ready
  411.                         6       ring received
  412.                         7       receive line signal detected
  413.  
  414.  
  415. Function 02h    Wait For A Character From Comm Port DX
  416. entry   AH      02h
  417.         DX      port number (0-3)
  418. return  AL      character received
  419.         AH      error code (see above)(00h for no error)
  420.  
  421.  
  422. Function 03h    Fetch the Status of Comm Port DX (0 or 1)
  423. entry   AH      03h
  424.         DX      port (0-3)
  425. return  AH      set bits (01h) indicate comm-line status
  426.                 bit     7       timeout
  427.                 bit     6       empty transmit shift register
  428.                 bit     5       empty transmit holding register
  429.                 bit     4       break detected ("long-space")
  430.                 bit     3       framing error
  431.                 bit     2       parity error
  432.                 bit     1       overrun error
  433.                 bit     0       data ready
  434.         AL      set bits indicate modem status
  435.                 bit     7       received line signal detect
  436.                 bit     6       ring indicator
  437.                 bit     5       data set ready
  438.                 bit     4       clear to send
  439.                 bit     3       delta receive line signal detect
  440.                 bit     2       trailing edge ring detector
  441.                 bit     1       delta data set ready
  442.                 bit     0       delta clear to send
  443.  
  444.  
  445. Function 04h    Extended Initialize
  446.                 (Convertible, PS/2)
  447. entry   AH      04h
  448.         AL      break status
  449.                 01h     if break
  450.                 00h     if no break
  451.         BH      parity
  452.                 00h     no parity
  453.                 01h     odd parity
  454.                 02h     even parity
  455.                 03h     stick parity odd
  456.                 04h     stick parity even
  457.         BL      number of stop bits
  458.                 00h     one stop bit
  459.                 01h     2 stop bits (1½ if 5 bit word length)
  460.         CH      word length
  461.                 00h     5 bits
  462.                 01h     6 bits
  463.                 02h     7 bits
  464.                 03h     8 bits
  465.         CL      baud rate
  466.                 00h     110
  467.                 01h     150
  468.                 02h     300
  469.                 03h     600
  470.                 04h     1200
  471.                 05h     2400
  472.                 06h     4800
  473.                 07h     9600
  474.                 08h     19200
  475.         DX      comm port (0-3)
  476. return  AH      line control status
  477.         AL      modem status
  478. note    Provides a superset of fn 00h capabilities for PS/2 machines.
  479.  
  480.  
  481. Function 05h    Extended Communication Port Control
  482.                 (Convertible, PS/2)
  483. entry   AH      05h
  484.         AL      00h     read modem control register
  485.                 01h     write modem control register
  486.         BL      modem control register
  487.            bits 0       DTR data terminal ready
  488.                 1       RTS request to send
  489.                 2       out1
  490.                 3       out2
  491.                 4       loop
  492.                 5,6,7   reserved
  493.         DX      port number (0=COM1, 1=COM2, etc.)
  494. return  AH      port status (see 00h above)
  495.         AL      modem status (see 00h above)
  496.         BL      modem control register (see 01h above)
  497.  
  498.  
  499. Function 80-97h PC-MOS/386 Serial Device Interface
  500.         (see PCMOS xhapter) 
  501.  
  502.  
  503.  
  504.  
  505. FOSSIL Drivers .................................................. 3**7
  506.  
  507. Interrupt  14h  FOSSIL (Fido/Opus/Seadog Standard Interface Level)
  508.  
  509.                 A FOSSIL is a device driver for handling the IBM PC
  510.                 serial communications ports in a standard fashion from
  511.                 an application (communications) program.  A FOSSIL
  512.                 chains into the int 14h BIOS communications vector and
  513.                 replaces many functions with enhanced routines which
  514.                 may be easily accessed by an application.
  515.  
  516.                 For all functions, all registers not specifically 
  517.                 containing a function return value must be preserved
  518.                 across the call.
  519.  
  520.  
  521. entry   AH      00h     FOSSIL: Set Baud Rate And Parameters
  522.         AL      byte
  523.                 bits 7,6,5 baudrate
  524.                 000     19200 baud
  525.                 001     38400 baud
  526.                 010     300 baud
  527.                 011     600 baud
  528.                 100     1200 baud
  529.                 101     2400 baud
  530.                 110     4800 baud
  531.                 111     9600 baud
  532.                 bits 4,3 parity
  533.                 00      none
  534.                 01      odd
  535.                 10      none
  536.                 11      even
  537.                 bit 2 stop bits
  538.                 0       1 stop bit
  539.                 1       2 stop bits
  540.                 bit 1 char length
  541.                 0       5 bits plus value
  542.                 other   optional
  543.         DX      port number (NOP if DX=00FFh)
  544. return  AX      status (see fn 03h)
  545. note    Low-order 5 bits are undefined by FOSSIL 1.0 spec.
  546.  
  547.  
  548. entry   AH      01h     FOSSIL: Transmit Character With Wait
  549.         AL      ASCII value of character to be sent
  550.         DX      port number (NOP if DX=00FFh)
  551. return  AX      status bits (see function 03h)
  552. note    Character is queued for transmission.  If there is room in the
  553.         transmitter buffer when this call is made, the character will
  554.         be stored and control returned to caller.  If the buffer is
  555.         full, the driver will wait for room.  Use this function with
  556.         caution when flow control is enabled.
  557.  
  558.  
  559. entry   AH      02h     FOSSIL: Receive A Character With Wait
  560.         DX      port number (0-3) (NOP if DX=00FFh)
  561. return  AH      RS-232 status code (see AH=00h above)
  562.         AL      ASCII value of character received from serial port
  563. note    Will timeout if DSR is not asserted, even if function 03h
  564.         returns data ready.
  565.  
  566.  
  567. entry   AH      03h     FOSSIL: Request Status
  568.         DX      port number  (NOP if DX=00FFh)
  569. return  AX      status bit mask
  570.                 AH      bit 0 set  RDA     input data is available
  571.                                            in buffer
  572.                             1 set  OVRN    input buffer overrun
  573.                             2 N/A
  574.                             3 N/A
  575.                             4 N/A
  576.                             5 set  THRE    room is available in output
  577.                                            buffer
  578.                             6 set  TSRE    output buffer is empty
  579.                             7 N/A
  580.                 AL      bit 0 N/A
  581.                             1 N/A
  582.                             2 N/A
  583.                             3 set          this bit is always set
  584.                             4 N/A
  585.                             5 N/A
  586.                             6 N/A
  587.                             7 set  DCD     carrier detect
  588. note    Bit 3 of AL is always returned set to enable programs to use 
  589.         it as a carrier detect bit on hardwired (null modem) links. 
  590.  
  591.  
  592. entry   AH      04h     FOSSIL: Initialize FOSSIL Driver
  593.         BX      4F50h                      (optional)
  594.         DX      port number                (DX=00FFh special)
  595.         ES:CX   pointer to ^C flag address (optional)
  596. return  AX      1954h if successful
  597.         BL      maximum function number supported (excluding 7Eh-0BFh)
  598.         BH      revision of FOSSIL supported
  599. note 1) DTR is raised when FOSSIL inits.
  600.      2) Existing baudrate is preserved.
  601.      3) If BX contains 4F50h, the address specified in ES:CX is that 
  602.         of a ^C flag byte in the application program, to be
  603.         incremented when ^C is detected in the keyboard service
  604.         routines.  This is an optional service and only need be
  605.         supported on machines where the keyboard service can't (or
  606.         won't) perform an int 1Bh or int 23h when a control-C is 
  607.         entered. 
  608.  
  609.  
  610. entry   AH      05h     FOSSIL: Deinitialize FOSSIL Driver
  611.         DX      port number  (DX=00FFh special)
  612. return  none
  613. note 1) DTR is not affected.
  614.      2) Disengages driver from comm port.  Should be done when
  615.         operations on the port are complete.
  616.      3) If DX=00FFh, the initialization that was performed when
  617.         FOSSIL function 04h with DX=00FFh should be undone.
  618.  
  619.  
  620. entry   AH      06h     FOSSIL: Raise/Lower DTR 
  621.         AL      DTR state to be set
  622.                 00h     lower DTR
  623.                 01h     raise DTR
  624.         DX      comm port (NOP if DX=00FFh)
  625. return  none
  626.  
  627.  
  628. entry   AH      07h     FOSSIL: Return Timer Tick Parameters
  629. return  AH      ticks per second on interrupt number shown in AL
  630.         AL      timer tick interrupt number (not vector!)
  631.         DX      milliseconds per tick (approximate)
  632.  
  633.  
  634. entry   AH      08h     FOSSIL: Flush Output Buffer
  635.         DX      port number (NOP if DX=00FFh)
  636. return  none
  637. note    Waits until all output is done.
  638.  
  639.  
  640. entry   AH      09h     FOSSIL: Purge Output Buffer
  641.         DX      port number (NOP if DX=00FFh)
  642. return  none
  643. note    Returns to caller immediately.
  644.  
  645.  
  646. entry   AH      0Ah     FOSSIL: Purge input buffer
  647.         DX      port number (NOP if DX=00FFh)
  648. return  none
  649. note 1) If any flow control restraint has been employed (dropping
  650.         RTS or transmitting XOFF) the port will be "released" by
  651.         doing the reverse, raising RTS or sending XON.
  652.      2) Returns to caller immediately.
  653.  
  654.  
  655. entry   AH      0Bh     FOSSIL: Transmit No Wait
  656.         AL      ASCII character value to be sent
  657.         DX      port number (NOP if DX=00FFh)
  658. return  AX      0000h   character not accepted
  659.                 0001h   character accepted
  660. note    This is exactly the same as the "regular" transmit call
  661.         except that if there is no space available in the output
  662.         buffer a value of zero is returned in AX, if room is
  663.         available a value 1 (one) is returned.
  664.  
  665.  
  666. entry   AH      0Ch     FOSSIL: Nondestructive Read No Wait
  667.         DX      port number (NOP if DX=00FFh)
  668. return  AH      character
  669.                 0FFFFh  character not available
  670. note 1) Reads async buffer.
  671.      2) Does not remove keycode from buffer.
  672.  
  673.  
  674. entry   AH      0Dh     FOSSIL: Keyboard Read No Wait
  675. return  AX      IBM keyboard scan code or
  676.                 0FFFFh if no keyboard character available
  677. note 1) Use IBM-style function key mapping in the high order byte.
  678.      2) Scan codes for non function keys are not specifically
  679.         required but may be included.
  680.      3) Does not remove keycode from buffer.
  681.  
  682.  
  683. entry   AH      0Eh     FOSSIL: Keyboard Input With Wait
  684. return  AX      IBM keyboard scan code
  685. note    Returns the next character from the keyboard or waits if
  686.         no character is available.
  687.  
  688.  
  689. entry   AH      0Fh     FOSSIL: Toggle Flow Control
  690.         AL      bit mask describing requested flow control
  691.            bits 0       XON/XOFF on transmit (watch for XOFF while
  692.                         sending)
  693.                 1       CTS/RTS (CTS on transmit/RTS on receive)
  694.                 2       reserved
  695.                 3       XON/XOFF on receive (send XOFF when buffer
  696.                         near full)
  697.                 4-7     not used, FOSSIL spec calls for setting to 1
  698.         DX      port number (NOP if DX=00FFh)
  699. return  none
  700. note 1) Bit 2 is reserved for DSR/DTR,  but is not currently
  701.         supported in any implementation.
  702.      2) TRANSMIT flow control allows the other end to restrain the
  703.         transmitter when you are overrunning it.  RECEIVE flow control
  704.         tells the FOSSIL to attempt to do just that if it is being
  705.         overwhelmed.
  706.      3) Enabling transmit XON/XOFf will cause the FOSSIL to stop
  707.         transmitting upon receiving an XOFf. The FOSSIL will resume
  708.         transmitting when an XON is received.
  709.      4) Enabling CTS/RTS will cause the FOSSIL to cease transmitting
  710.         when CTS is lowered.  Transmission will resume when CTS is
  711.         raised.  The FOSSIL will drop RTS when the receive buffer
  712.         reaches a predetermined percentage full.  The FOSSIL will
  713.         raise RTS when the receive buffer empties below the
  714.         predetermined percentage full.  The point(s) at which this
  715.         occurs is left to the individual FOSSIL implementor.
  716.      5) Enabling receive Xon/Xoff will cause the FOSSIL to send an XOFF
  717.         when the receive buffer reaches a pre-determined percentage
  718.         full.  An XON will be sent when the receive buffer empties
  719.         below the predetermined percentage full.  The point(s) at which
  720.         this occurs is left to the individual FOSSIL implementor.
  721.      6) Applications using this function should set all bits ON in the
  722.         high nibble of AL as well.  There is a compatible (but not
  723.         identical) FOSSIL driver implementation that uses the high
  724.         nibble as a control mask.  If your application sets the high
  725.         nibble to all ones, it will always work, regardless of the
  726.         method used by any given driver.
  727.  
  728.  
  729. entry   AH      10h     Extended Ctrl-C/Ctrl-K Checking
  730.                         And Transmit On/Off
  731.         AL      flags bit mask byte (bit set if activated)
  732.            bits 0       enable/disable Ctrl-C/Ctrl-K checking
  733.                 1       disable/enable the transmitter
  734.                 2-7     not used
  735.         DX      port number (NOP if DX=00FFh)
  736. return  AX      status byte
  737.                 0000h   control-C/K has not been received
  738.                 0001h   control-C/K has been received
  739. note    This is used primarily for programs that can't trust XON/XOFF
  740.         at FOSSIL level (such as BBS software).
  741.  
  742.  
  743. entry   AH      11h     FOSSIL: Set Current Cursor Location
  744.         DH      row (line) 0-24
  745.         DL      column     0-79
  746. return  none
  747. note 1) This function looks exactly like the int 10h, fn 02h on the
  748.         IBM PC.  The cursor location is passed in DX: row in DH and
  749.         column in DL.  This function treats the screen as a coordinate
  750.         system whose origin (0,0) is the upper left hand corner of the
  751.         screen.
  752.      2) Row and column start at 0.
  753.  
  754.  
  755. entry   AH      12h     FOSSIL: Read Current Cursor Location
  756. return  DH      row (line)
  757.         DL      column
  758. note 1) Looks exactly like int 10h/fn 03h in the IBM PC BIOS.  The
  759.         current cursor location (same coordinate system as function
  760.         16h) is passed back in DX.
  761.      2) Row and column start at 0.
  762.  
  763.  
  764. entry   AH      13h     FOSSIL: Single Character ANSI Write To Screen
  765.         AL      value of character to display
  766. return  none
  767. note    This call might not be reentrant since ANSI processing may be
  768.         through DOS.
  769.  
  770.  
  771. entry   AH      14h     FOSSIL: Toggle Watchdog Processing
  772.         AL      00h     to disable watchdog
  773.                 01h     to enable watchdog
  774.         DX      port number (NOP if DX=00FFh)
  775. return  none
  776. note 1) This call will cause the FOSSIL to reboot the system if Carrier
  777.         Detect for the specified port drops while watchdog is turned
  778.         on.
  779.      2) The port need not be active for this function to work.
  780.  
  781.  
  782. entry   AH      15h     FOSSIL: Write Character To Screen Using BIOS
  783.         AL      ASCII code of character to display
  784. return  none
  785. note 1) This function is reentrant.
  786.      2) ANSI processing may not be assumed.
  787.  
  788.  
  789. entry   AH      16h     FOSSIL: Insert or Delete a Function From The
  790.                         Timer Tick Chain
  791.         AL      00h     to delete a function
  792.                 01h     to add a function
  793.         ES:DX   address of function
  794. return  AX      0000h   successful
  795.                 0FFFFh  unsuccessful
  796.  
  797.  
  798. entry   AH      17h     FOSSIL: Reboot System
  799.         AL      boot type
  800.                 00h     cold boot
  801.                 01h     warm boot
  802. return  none
  803.  
  804.  
  805. entry   AH      18h     FOSSIL: Read Block
  806.         CX      maximum number of characters to transfer
  807.         DX      port number (NOP if DX=00FFh)
  808.         ES:DI   pointer to user buffer
  809. return  AX      number of characters transferred
  810. note 1) This function does not wait for more characters to become
  811.         available if the value in CX exceeds the number of characters
  812.         currently stored.
  813.      2) ES:DI are left unchanged by the call; the count of bytes
  814.         actually transferred will be returned in AX.
  815.  
  816.  
  817. entry   AH      19h     FOSSIL: Write Block
  818.         CX      maximum number of characters to transfer
  819.         DX      port number  (NOP if DX=00FFh)
  820.         ES:DI   pointer to user buffer
  821. return  AX      number of characters transfered
  822. note    ES and DI are not modified by this call.
  823.  
  824.  
  825. entry   AH      1Ah     FOSSIL: BREAK Signal Begin Or End
  826.         AL      00h     stop sending 'break'
  827.                 01h     start sending 'break'
  828.         DX      port number  (NOP if DX=00FFh)
  829. return  none
  830. note 1) Resets all transmit flow control restraints such as an XOFF
  831.         received from remote.
  832.      2) Init (fn 04h) or UnInit (fn 05h) will stop an in-progress
  833.         break.
  834.      3) The application must determine the "length" of the break.
  835.  
  836.  
  837. entry   AH      1Bh     FOSSIL: Return Driver Information
  838.         CX      size of user buffer in bytes
  839.         DX      port number  (if DX=00FFh, port data will not be valid)
  840.         ES:DI   pointer to user buffer
  841. return  AX      number of characters transferred
  842.         ES:DI   user buffer structure:
  843.                 00h     word    size of structure in bytes
  844.                 02h     byte    FOSSIL driver version
  845.                 03h     byte    revision level of this specific driver
  846.                 04h     dword   FAR pointer to ASCII ID string
  847.                 08h     word    size of the input buffer in bytes
  848.                 0Ah     word    number of bytes in input buffer
  849.                 0Ch     word    size of the output buffer in bytes
  850.                 0Eh     word    number of bytes in output buffer
  851.                 10h     byte    width of screen in characters
  852.                 11h     byte    screen height in characters
  853.                 12h     byte    actual baud rate, computer to modem
  854.                                 (see mask in function 00h
  855. note 1) The baud rate byte contains the bits that fn 00h would use to
  856.         set the port to that speed.
  857.      2) The fields related to a particular port (buffer size, space
  858.         left in the buffer, baud rate) will be undefined if port=0FFh
  859.         or an invalid port is contained in DX.
  860.      3) Additional information will always be passed after these, so
  861.         that the fields will never change with FOSSIL revision changes.
  862.  
  863.  
  864. entry   AH      7Eh     FOSSIL: Install An External Application Function
  865.         AL      code assigned to external application
  866.         ES:DX   pointer to entry point
  867. return  AX      1954h   FOSSIL driver present
  868.             not 1954h   FOSSIL driver not present
  869.         BH      00h     failed
  870.                 01h     successful
  871.         BL      code assigned to application (same as input AL)
  872. note 1) Application codes 80h-0BFh are supported.  Codes 80h-83h are
  873.         reserved.
  874.      2) An error code of BH=00h with AX=1954h should mean that another
  875.         external application has already been installed with the code
  876.         specified in AL.
  877.      3) Applications are entered via a FAR call and should make a FAR
  878.         return.
  879.  
  880.  
  881. entry   AH      7Fh     FOSSIL: Remove An External Application Function
  882.         AL      code assigned to external application
  883.         ES:DX   pointer to entry point
  884. return  AX      1954h
  885.         BH      00h     failed
  886.                 01h     successful
  887.         BL      code assigned to application (same as input AL)
  888.  
  889.  
  890.  
  891. ┌─────────────────────────────────────────────────────────────────────┐
  892. │Interrupt 15h  Cassette I/O                                    3**8  │
  893. └─────────────────────────────────────────────────────────────────────┘
  894. (0:0054h)    1) Renamed "System Services" on PS/2 line.
  895.              2) Issuing int 15h on an XT may cause a system crash.
  896.                 On AT and after, interrupts are disabled with CLI when
  897.                 the interrupt service routine is called, but most ROM
  898.                 versions do not restore interrupts with STI.
  899.              3) For the original IBM PC, int 15h returns AH=80h and CF
  900.                 set for all calls with AH not 0,1, or 2.
  901.              4) For the PC/XT int 15h returns AH=86h, CF set if called
  902.                 at all.  (the PC/XT ROM BIOS does not support int 15h)
  903.              5) For the AT/339, int 15h returns AH=86h, CF set if
  904.                 called with an invalid function code.
  905.  
  906.  
  907. Function 00h    Turn Cassette Motor On
  908.                 (PC, PCjr only)
  909. entry   AH      00h
  910. return  CF      set on error
  911.                 AH      error code
  912.                         00h     no errors
  913.                         01h     CRC error
  914.                         02h     bad tape signals
  915.                                 no data transitions (PCjr)
  916.                         03h     no data found on tape
  917.                                 not used (PCjr)
  918.                         04h     no data
  919.                                 no leader (PCjr)
  920.                         80h     invalid command
  921.                         86h     no cassette present
  922.                                 not valid in PCjr
  923. note    NOP for systems where cassette not supported.
  924.  
  925.  
  926. Function 01h    Turn Cassette Motor Off
  927.                 (PC, PCjr only)
  928. entry   AH      01h
  929. return  CF      set on error
  930.         AH      error code (86h)
  931. note    NOP for systems where cassette not supported.
  932.  
  933.  
  934. Function 02h    Read Blocks From Cassette
  935.                 (PC, PCjr only)
  936. entry   AH      02h
  937.         CX      number of bytes to read
  938.         ES:BX   segment:offset + 1 of last byte read
  939. return  CF      set on error
  940.                 AH      error code (01h, 02h, 04h, 80h, 86h)
  941.         DX      count of bytes actually read
  942.         ES:BX   pointer past last byte written
  943. note 1) NOP for systems where cassette not supported.
  944.      2) Cassette operations normally read 256 byte blocks.
  945.  
  946.  
  947. Function 03h    Write Data Blocks to Cassette
  948.                 (PC, PCjr only)
  949. entry   AH      03h
  950.         CX      count of bytes to write
  951.         ES:BX   pointer to data buffer
  952. return  CF      set on error
  953.                 AH      error code (80h, 86h)
  954.         CX      00h
  955.         ES:BX   pointer to last byte written+1
  956. note 1) NOP for systems where cassette not supported.
  957.      2) The last block is padded to 256 bytes with zeroes if needed.
  958.      3) No errors are returned by this service.
  959.  
  960.  
  961. Function 0Fh    ESDI Format Unit Periodic Interrupt
  962.                 (PS/2 50+)
  963. entry   AH      0Fh
  964.         AL      phase code
  965.                 00h     reserved
  966.                 01h     surface analysis
  967.                 02h     formatting
  968. return  CF      clear   if formatting should continue
  969.                 set     if it should terminate
  970. note 1) Called the BIOS on the ESDI Fixed Disk Drive Adapter/A during
  971.         a format or surface analysis operation after each cylinder is
  972.         completed.
  973.      2) This function call can be captured by a program so that it
  974.         will be notified as each cylinder is formatted or analyzed.
  975.         The program can count interrupts for each phase to determine
  976.         the current cylinder number.
  977.      3) The BIOS default handler for this function returns with CF set. 
  978.  
  979.  
  980. Function 10h    TopView API Function Calls                (TopView)
  981.                 see Chapter 17
  982.  
  983.  
  984. Function 20h    PRINT.COM  (DOS 3.1+ internal)
  985.                 (AT, XT/286, PS/2 50+)
  986. entry   AH      20h
  987.         AL      subfunction
  988.                 00h     disable critical region flag
  989.                 01h     set critical region flag
  990.                         ES:BX   pointer to flag byte set while inside
  991.                                 DOS calls
  992.                 10h     set up SysReq routine
  993.                 11h     completion of SysReq routine (software only)
  994.  
  995.  
  996. Function 21h    Read Power-On Self Test (POST) Error Log
  997.                 (PS/2 50+)
  998. entry   AH      21h
  999.         AL      00h     read POST log
  1000.                 01h     write POST log
  1001.                         BH      device ID
  1002.                         BL      device error code
  1003. return  CF      set on error
  1004.         AH      status
  1005.                 00h     successful read
  1006.                         BX      number of POST error codes stored
  1007.                         ES:DI   pointer to error log
  1008.                 01h     list full
  1009.                 80h     invalid command
  1010.                 86h     function unsupported
  1011. note    The log is a series of words, the first byte of which
  1012.         identifies the error code and the second is the device ID.
  1013.  
  1014.  
  1015. Function 40h    Read/Modify Profiles
  1016.                 (Convertible)
  1017. entry   AH      40h
  1018.         AL      00h     read system profile in CX,BX
  1019.                 01h     write system profile from CX, BX
  1020.                 02h     read internal modem profile in BX
  1021.                 03h     write internal modem profile from BX
  1022.         BX      profile info
  1023. return  BX      internal modem profile (from 02h)
  1024.         CX,BX   system profile (from 00h)
  1025.  
  1026.  
  1027. Function 41h    Wait On External Event
  1028.                 (Convertible)
  1029. entry   AH      41h
  1030.         AL      condition type
  1031.            bits 0-2     condition to wait for
  1032.                         0,0,0   any external event
  1033.                         0,0,1   compare and return if equal
  1034.                         0,1,0   compare and return if not equal
  1035.                         0,1,1   test and return if not zero
  1036.                         1,0,0   test and return if zero
  1037.                 3       reserved
  1038.                 4       0       user byte
  1039.                         1       port address
  1040.                 5-7     reserved
  1041.         BH      condition compare or mask value
  1042.                 condition codes:
  1043.                 00h     any external event
  1044.                 01h     compare and return if equal
  1045.                 02h     compare and return if not equal
  1046.                 03h     test and return if not zero
  1047.                 04h     test and return if zero
  1048.         BL      timeout value times 55 milliseconds
  1049.                 00h     if no time limit
  1050.         DX      I/O port address (if AL bit 4=1)
  1051.         ES:DI   pointer to user byte (if AL bit 4=0)
  1052.  
  1053.  
  1054. Function 42h    Request System Power Off
  1055.                 (Convertible)
  1056. entry   AH      42h
  1057.         AL      00h     to use system profile
  1058.                 01h     to force suspend regardless of profile
  1059. return  unknown
  1060. note    With early versions of DOS 5.0, the IBM L40SX would not
  1061.         Suspend/Resume if DOS=LOW was in CONFIG.SYS.
  1062.  
  1063.  
  1064. Function 43h    Read System Status
  1065.                 (Convertible)
  1066. entry   AH      43h
  1067. return  AL      status byte
  1068.             bit 0       LCD detached
  1069.                 1       reserved
  1070.                 2       RS232/parallel powered on
  1071.                 3       internal modem powered on
  1072.                 4       power activated by alarm
  1073.                 5       bad time
  1074.                 6       external power in use
  1075.                 7       battery low
  1076.  
  1077.  
  1078. Function 44h    Toggle Internal Modem Power
  1079.                 (Convertible)
  1080. entry   AH      44h
  1081.         AL      00h      to power off
  1082.                 01h      to power on
  1083. return  unknown
  1084.  
  1085.  
  1086. Function 4Fh    OS Hook - Keyboard Intercept
  1087.                 (except PC, PCjr, and XT)
  1088. entry   AH      4Fh
  1089.         AL      scan code, CF set
  1090. return  AL      scan code
  1091.         CF      set     processing desired
  1092.                 clear   scan code should not be used
  1093. note 1) Called by int 9 handler for each keystroke to translate scan
  1094.         codes.
  1095.      2) An OS or a TSR can capture this function to filter the raw
  1096.         keyboard data stream.  The new handler can substitute a new
  1097.         scan code, return the same scan code, or return the carry flag
  1098.         clear causing the keystroke to be discarded.  The BIOS default
  1099.         routine simply returns the scan code unchanged.
  1100.      3) A program can call int 15h/fn0C0h to determine whether the host
  1101.         machine's BIOS supports keyboard intercept.
  1102.      4) Used internally by PC-MOS/386 v4.00+ for keyboard input.
  1103.      5) Some BIOSes do not properly support this call.  Int 15h/fn 0C0h
  1104.         will tell if the BIOS is supposed to support this call.
  1105.      6) Some versions of KEYB.COM provide additional 4Fh support.
  1106.  
  1107.  
  1108. Function 70h    EEROM handler
  1109.                 (Tandy 1000HX)
  1110. entry   AH      00h     read from EEROM
  1111.                 BL      00h
  1112.                 01h     write to EEROM
  1113.                 BL      word number to write (0-15)
  1114.                 DX      word value to write
  1115. return  DX      (AH=00h) word value
  1116.         CF      set on error (system is not a Tandy 1000 HX)
  1117.  
  1118.  
  1119. Function 80h    OS Hook - Device Open
  1120.                 (AT, XT/286, PS/2)
  1121. entry   AH      80h
  1122.         BX      device ID
  1123.         CX      process ID
  1124. return  CF      set on error
  1125.         AH      status
  1126.                 00h     OK
  1127. note 1) Acquires ownership of a logical device for a process.
  1128.      2) This call, along with fns 81h and 82h, defines a simple
  1129.         protocol that can be used to arbitrate usage of devices by
  1130.         multiple processes.  A multitasking program manager would be
  1131.         expected to capture int 15h and provide the appropriate
  1132.         service.
  1133.      3) The default BIOS routine for this function simply returns with
  1134.         CF clear and AH=00h.
  1135.  
  1136.  
  1137. Function 81h    Device Close
  1138.                 (AT, XT/286, PS/2)
  1139. entry   AH      81h
  1140.         BX      device ID
  1141.         CX      process ID
  1142. return  CF      set on error
  1143.         AH      status
  1144.                 00h     OK
  1145. note 1) Releases ownership of a logical device for a process.
  1146.      2) A multitasking program manager would be expected to capture
  1147.         int 15h and provide the appropriate service.
  1148.      3) The BIOS default routine for this function simply returns with
  1149.         the CF clear and AH=00h.
  1150.  
  1151.  
  1152. Function 82h    Program Termination
  1153.                 (AT, XT/286, PS/2)
  1154.         AH      82h
  1155.         BX      device ID
  1156. return  CF      set on error
  1157.         AH      status
  1158.                 00h     OK
  1159. note 1) Closes all logical devices opened with function 80h.
  1160.      2) A multitasking program manager would be expected to capture
  1161.         int 15h and provide the appropriate service.
  1162.      3) The BIOS default routine for this function simply returns with
  1163.         CF clear and AH=00h.
  1164.  
  1165.  
  1166. Function 83h    Event Wait
  1167.                 (AT, XT/286, Convertible, PS/2 50+)
  1168. entry   AH      83h
  1169.         AL      00h     to set interval
  1170.                 01h     to cancel (CX:DX and ES:BX not required)
  1171.         CX:DX   number of microseconds to wait (granularity is 976
  1172.                                                 microseconds)
  1173.         ES:BX   pointer to semaphore flag (bit 7 is set when interval
  1174.                                            expires)
  1175.                 (pointer is to caller's memory) (some sources list bit
  1176.                                                  15 set)
  1177. return  CF      clear   OK
  1178.                 set     function already busy
  1179. note 1) Requests setting of a semaphore after a specified interval or
  1180.         cancels a previous request.
  1181.      2) The calling program is responsible for clearing the semaphore
  1182.         before requesting this function.
  1183.      3) The actual duration of an event wait is always an integral
  1184.         multiple of 976 microseconds.  The CMOS date/clock chip
  1185.         interrupts are used to implement this function.
  1186.      4) Use of this function allows programmed, hardware-independent
  1187.         delays at a finer resolution than can be obtained through use
  1188.         of the MS-DOS Get Time function (int 21h/fn 2Ch) which returns
  1189.         time in hundredths of a second.
  1190.      5) CX:DX is a four-byte integer.
  1191.      7) This function is called by int 70h and is not the normal int
  1192.         08h/1Ch clock tick.  It is generated by the MC146818A Real Time
  1193.         Clock chip.  This is the battery backed up CMOS clock chip.
  1194.  
  1195.  
  1196. Function 84h    Read Joystick Input Settings
  1197.                 (AT, XT/286, PS/2)
  1198. entry   AH      84h
  1199.         DX      00h     to read current switch settings
  1200.                         (return in AL)
  1201.                 01h     to read resistive inputs
  1202. return  CF      set on error
  1203.         (fn 00h)
  1204.         AL      switch settings (bits 7-4)
  1205.         (fn 01h)
  1206.         AX      stick A (X) value
  1207.         BX      stick A (Y) value
  1208.         CX      stick B (X) value
  1209.         DX      stick B (Y) value
  1210. note 1) An error is returned if DX does not contain a valid
  1211.         subfunction number.
  1212.      2) If no game adapter is installed, all returned values are 00h.
  1213.      3) Using a 250K Ohm joystick, the potentiometer values usually
  1214.         lie within the range 0-416 (0000h-01A0h).
  1215.      4) Not all BIOSes properly return the presence of a game port.
  1216.         In my experience, most BIOSes require a joystick to actually
  1217.         be present even if the port is otherwise enabled.
  1218.  
  1219.  
  1220. Function 85h    System Request (SysReq) Key Pressed
  1221.                 (except PC, PCjr, XT)
  1222. entry   AH      85h
  1223.         AL      00h      key pressed
  1224.                 01h      key released
  1225. return  CF      set on error
  1226.         AH      error code
  1227. note 1) Called by BIOS keyboard decode routine when the SysReq key
  1228.         is detected.
  1229.      2) The BIOS handler for this call is a dummy routine that always
  1230.         returns a success status unless called with an invalid
  1231.         subfunction number in AL.
  1232.      3) A multitasking program manager would be expected to capture
  1233.         int 15h so that it can be notified when the user strikes the
  1234.         SysReq key.
  1235.  
  1236.  
  1237. Function 86h    Wait
  1238.                 (except PC, PCjr, XT)
  1239.         AH      86h
  1240.         CX:DX   4-byte integer, number of microseconds to wait
  1241.                 CX high word, DX low word
  1242. return  CF      clear   after wait elapses
  1243.         CF      set     immediately due to error
  1244. note 1) Suspends the calling program for a specified interval in
  1245.         microseconds.
  1246.      2) The actual duration of the wait is always an integral multiple
  1247.         of 976 microseconds.
  1248.      3) Use of this function allows programmed, hardware-independent
  1249.         delays at a finer resolution than can be obtained through use
  1250.         of the MS-DOS Get Time function (int 21h fn 2Ch) which returns
  1251.         time in hundredths of a second.
  1252.      4) This function calls int 70h and is not the normal Int 08h/1Ch
  1253.         clock tick. It is generated by the MC146818A Real Time Clock
  1254.         chip.  This is the battery backed CMOS clock chip.
  1255.  
  1256.  
  1257. Function 87h    Memory Block Move
  1258.                 (2-3-486 machines only)
  1259.         AH      87h
  1260.         CX      number of words to move
  1261.         ES:SI   pointer to Global Descriptor Table (GDT)
  1262.                 offset 00h-0Fh  reserved, set to zero
  1263.                            00h  null descriptor
  1264.                            08h  uninitialized, will be made into GDT
  1265.                                 descriptor
  1266.                        10h-11h  source segment length in bytes
  1267.                                 (2*CX-1 or greater)
  1268.                        12h-14h  24-bit linear source address
  1269.                        15h      access rights byte (always 93h)
  1270.                        16h-17h  reserved, set to zero
  1271.                        18h-19h  destination segment length in bytes
  1272.                                 (2*CX-1 or greater)
  1273.                        1Ah-1Ch  24-bit linear destination address
  1274.                        1Dh      access rights byte (always 93h)
  1275.                        1Eh-1Fh  reserved, set to zero
  1276.                            20h *uninitialized, used by BIOS
  1277.                            28h *uninitialized, will be made into SS
  1278.                                 descriptor
  1279.                               (*) some sources say initialized to zero
  1280. return  CF      set on error
  1281.         AH      status
  1282.                 00h     success - source copied into destination
  1283.                 01h     RAM parity error
  1284.                 02h     exception interrupt error
  1285.                 03h     address line 20 gating failed
  1286. note 1) The GDT table is composed of six 8-byte descriptors to be
  1287.         used by the CPU in protected mode.  The four descriptors in
  1288.         offsets 00h-0Fh and 20h-2Fh are filled in by the BIOS before
  1289.         the CPU mode switch.
  1290.      2) The addresses used in the descriptor table are linear
  1291.         (physical) 24-bit addresses in the range 000000h-0FFFFFFh -
  1292.         not segments and offsets - with the least significant byte at
  1293.         the lowest address and the most significant byte at the highest
  1294.         address.
  1295.      3) Interrupts are disabled during this call; use may interfere
  1296.         with the operation of comm programs, network drivers, or other
  1297.         software that relies on prompt servicing of hardware interrupts.
  1298.      4) This call is not valid in the OS/2 Compatibility Box.
  1299.      5) This call will move a memory block from any real or protected
  1300.         mode address to any other real or protected mode address.
  1301.      6) DESQview does not intercept function 87, but QEXT and QEMM do,
  1302.         thereby allowing function 87 to work correctly inside DV.
  1303.         VDISK, which uses function 87, works inside DV.  If VDISK is
  1304.         sitting at the 1 MB mark, then the int 19h vector will have a
  1305.         VDISK signature in it.  The normal way to check for VDISK
  1306.         presence is by checking for the string "VDISK" at offset 12h
  1307.         of the segment of the int 19h vector.  If the string matches,
  1308.         then you can determine how much extended memory is reserved
  1309.         for VDISK by looking at offset 2Ch is the 3-byte address of the
  1310.         lowest extended memory address NOT in use by VDISK (i.e. if you
  1311.         see at 2Ch "00 00 14" then that means that VDISK is using
  1312.         memory up to 1 MB + 256K).
  1313.  
  1314.  
  1315. Function 88h    Get Extended Memory Size
  1316.                 (AT, XT/286, PS/2)
  1317. entry   AH      88h
  1318. return  AX      number of contiguous 1K blocks of extended memory
  1319.                 starting at address 0FFFFh (1024Kb)
  1320. note 1) This call will not work in the OS/2 Compatibility Box.
  1321.      2) Some BIOSes and software manipulate the Carry flag when this
  1322.         function is called.  When tested on a vanilla 386 with AMI BIOS
  1323.         the machine returned with the Carry Flag set.  When 386Max was
  1324.         loaded, the flag was not set.
  1325.      3) Used by IBM VDISK 4.0.
  1326.  
  1327.  
  1328. Function 89h    Switch Processor to Protected Mode
  1329.                 (AT, XT/286, PS/2)
  1330. entry   AH      89h
  1331.         BH      interrupt number for IRQ0, written to ICW2 of 8259
  1332.                 PIC #1  (must be evenly divisible by 8, determines
  1333.                 IRQ0-IRQ7)
  1334.         BL      interrupt number for IRQ8, written to ICW2 of 8259
  1335.                 PIC #2  (must be evenly divisible by 8, determines
  1336.                 IRQ8-IRQ15)
  1337.         ES:SI   pointer to 8-entry Global Descriptor Table for
  1338.                 protected mode:
  1339.                 offset  00h     null descriptor, initialized to zero
  1340.                         08h     GDT descriptor
  1341.                         10h     IDT (Interrupt Descriptor Table)
  1342.                                 descriptor
  1343.                         18h     DS, user's data segment
  1344.                         20h     ES, user's extra segment
  1345.                         28h     SS, user's stack segment
  1346.                         30h     CS, user's code segment
  1347.                         38h     uninitialized, used to build descriptor
  1348.                                 for BIOS code segment
  1349. return  CF      set on error
  1350.                 AH      0FFh  error enabling address line 20
  1351.         CF      clear   function successful (CPU is in protected mode)
  1352.                 AH      00h
  1353.                 CS      user-defined selector
  1354.                 DS      user-defined selector
  1355.                 ES      user-defined selector
  1356.                 SS      user-defined selector
  1357. note 1) The user must initialize the first seven descriptors; the
  1358.         eighth is filled in by the BIOS to provide addressability for
  1359.         its own execution.  The calling program may modify and use the
  1360.         eighth descriptor for any purpose after return from this
  1361.         function call.
  1362.      2) Intercepted by Microsoft's HIMEM.SYS and Quarterdeck's
  1363.         QEMM.SYS.
  1364.  
  1365.  
  1366. Function 90h    Device Busy Loop                  (except PC, PCjr, XT)
  1367. entry   AH      90h
  1368.         AL      predefined device type code:
  1369.                 00h     disk                              (may timeout)
  1370.                 01h     diskette                          (may timeout)
  1371.                 02h     keyboard                          (no timeout)
  1372.                 03h     PS/2 pointing device              (may timeout)
  1373.                 80h     network
  1374.                                                           (no timeout)
  1375.                 0FCh    hard disk reset (PS/2)            (may timeout)
  1376.                 0FDh    diskette motor start              (may timeout)
  1377.                 0FEh    printer                           (may timeout)
  1378.         ES:BX   pointer to request block for type codes 80h through 0FFh
  1379.                 (for network adapters, ES:BX is a pointer to network
  1380.                  control block)
  1381. return  CF      set     if wait time satisfied
  1382.                 clear   if driver must perform wait
  1383.         AH      status
  1384. note 1) Used by NETBIOS, TOPS Network, Tom Wagner's CTASK multitasker,
  1385.         Hyperdisk disk cache.
  1386.      2) Generic type codes are allocated as follows:
  1387.         00h-7Fh   non-reentrant devices; OS must arbitrate access
  1388.                   serially reusable devices
  1389.         80h-0BFh  reentrant devices; ES:BX points to a unique control
  1390.                   block
  1391.         0C0h-0FFh wait-only calls, no complementary POST int 15/fn 91h
  1392.                   call
  1393.      3) Invoked by the BIOS disk, printer, network, and keyboard
  1394.         handlers prior to performing a programmed wait for I/O
  1395.         completion.
  1396.      4) A multitasking program manager would be expected to capture
  1397.         int 15h/fn 90h so that it can dispatch other tasks while I/O
  1398.         is in progress.
  1399.      5) The default BIOS routine for this function simply returns with
  1400.         the CF clear and AH=00h.
  1401.      6) QEMM 6.0's "Stealth" mode suppresses this call.  Quarterdeck
  1402.         claims very few programs properly handle the EMS page frame
  1403.         when using this call.
  1404.  
  1405.  
  1406. Function 91h    Interrupt Completed
  1407.                 (AT, XT/286, PS/2 50+)
  1408. entry   AH      91h
  1409.         AL      type code (see AH=90h above)
  1410.                 00h-7Fh  serially reusable devices
  1411.                 80h-0BFh reentrant devices
  1412.         ES:BX   pointer to request block for type codes 80h through
  1413.                 0BFh
  1414. return  AH       00h
  1415. note 1) Used by NETBIOS and TOPS network, Tom Wagner's CTASK
  1416.         multitasker, Hyperdisk disk cache.
  1417.      2) Invoked by the BIOS disk network, and keyboard handlers to
  1418.         signal that I/O is complete and/or the device is ready.
  1419.      3) Predefined device types that may use Device POST are:
  1420.         00H  disk                   (may timeout)
  1421.         01H  floppy disk            (may timeout)
  1422.         02H  keyboard               (no timeout)
  1423.         03H  PS/2 pointing device   (may timeout)
  1424.         80H  network                (no timeout)
  1425.      4) The BIOS printer routine does not invoke this function because
  1426.         printer output is not interrupt driven.
  1427.      5) A multitasking program manager would be expected to capture
  1428.         int 15h/fn 91h so that it can be notified when I/O is
  1429.         completed and awaken the requesting task.
  1430.      6) The default BIOS routine for this function simply returns with
  1431.         the CF flag clear and AH=00h.
  1432.      7) QEMM 6.0's "Stealth" mode suppresses this call.  Quarterdeck
  1433.         claims very few programs properly handle the EMS page frame
  1434.         when using this call.
  1435.  
  1436.  
  1437. Function 0C0h   Get System Configuration
  1438.                 (XT after 1/10/86, PC Convertible, XT/286, AT, PS/2)
  1439. entry   AH      0C0h
  1440. return  CF      set     if BIOS doesn't support call
  1441.         ES:BX   pointer to ROM system descriptor table
  1442.           bytes 00h-01h number of bytes in the following table
  1443.                         (normally 16 bytes)
  1444.                 02h     system ID byte; see Chapter 2 for
  1445.                         interpretation
  1446.                 03h     secondary ID distingushes between AT and
  1447.                         XT/286, etc.
  1448.                 04h     BIOS revision level, 0 for 1st release, 1 for
  1449.                         2nd, etc.
  1450.                 05h     feature information byte
  1451.                    bits 0       reserved
  1452.                         1       Micro Channel bus (instead of ISA or
  1453.                                 EISA)
  1454.                         2       extended BIOS area allocated at 640k
  1455.                         3       wait for external event supported
  1456.                                 (int 15h/fn 41h), used on Convertible;
  1457.                                 reserved on PS/2 systems
  1458.                         4       keyboard intercept: int 15h, fn 04Fh
  1459.                                 called upon int 09h
  1460.                         5       realtime clock installed
  1461.                         6       second 8259 installed (cascaded IRQ2)
  1462.                         7       DMA channel 3 - used by hard disk
  1463.                                 BIOS
  1464.                 06h     unknown (set to 0) (reserved by IBM)
  1465.                 07h     unknown (set to 0) (reserved by IBM)
  1466.                 08h     unknown (set to 0)
  1467.                 09h     unknown (set to 0) (Award BIOS copyright here)
  1468. note 1) Int 15h is also used for the Multitask Hook on PS/2 machines.
  1469.         No register settings available yet.
  1470.      2) The 1/10/86 XT BIOS returns an incorrect value for the
  1471.         feature byte.
  1472.      3) Novell documents some versions of Netware prior to 2.2 as
  1473.         having problems on PS/2 machines due to a bug which did not
  1474.         return from the interrupt correctly.
  1475.      4) Some AMI BIOSes do not support this function, such as the 
  1476.         ones in early Dell machines.
  1477.  
  1478.  
  1479. Function 0C1h   Return Extended BIOS Data Area Segment Address
  1480.                 (AT & later)
  1481. entry   AH      0C1h
  1482. return  CF      set on error
  1483.         ES      segment of XBIOS data area
  1484. note 1) The XBIOS Data Area is allocated at the high end of
  1485.         conventional memory during the POST sequence.
  1486.      2) The word at 0040:0013h (memory size) is updated to reflect the
  1487.         reduced amount of memory available for DOS and application
  1488.         programs.
  1489.      3) The first byte in the XBIOS Data Area is initialized to its
  1490.         length in Kb.
  1491.      4) A program can determine whether the XBIOS Data Area exists by
  1492.         using int 15h/fn 0C0h.
  1493.  
  1494.  
  1495. Function 0C2h   Pointing Device BIOS Interface
  1496.                 (DesQview 2.x) (PS/2)
  1497. entry   AH      0C2h
  1498.         AL      00h     Enable/Disable Pointing Device
  1499.                         BH      00h     disable
  1500.                                 01h     enable
  1501.                 01h     Reset Pointing Device
  1502.                         Resets the system's mouse or other pointing
  1503.                         device, sets the sample rate, resolution, and
  1504.                         other characteristics to their default values.
  1505.                         return  BH      device ID (0=first)
  1506.                         note 1) After a reset operation, the state of
  1507.                                 the pointing device is as follows:
  1508.                                  disabled;
  1509.                                  sample rate at 100 reports per second;
  1510.                                  resolution at 4 counts per millimeter;
  1511.                                  scaling at 1 to 1.
  1512.                              2) The data package size is unchanged by
  1513.                                 this function.
  1514.                              3) Apps can use the fn 0C2h subfunctions
  1515.                                 to initialize the pointing device to
  1516.                                 other parameters, then enable the
  1517.                                 device with fn 00h.
  1518.                              4) BL is altered on return.
  1519.                 02h     Set Sampling Rate
  1520.                         BH      00h     10/second
  1521.                                 01h     20/second
  1522.                                 02h     40/second
  1523.                                 03h     60/second
  1524.                                 04h     80/second
  1525.                                 05h     100/second  (default)
  1526.                                 06h     200/second
  1527.                 03h     Set Pointing Device Resolution
  1528.                         BH      00h     one count per mm
  1529.                                 01h     two counts per mm
  1530.                                 02h     four counts per mm  (default)
  1531.                                 03h     eight counts per mm
  1532.                 04h     Get Pointing Device Type
  1533.                         return  BH      ID code for the mouse or other
  1534.                                         pointing device
  1535.                 05h     Initialize Pointing Device Interface
  1536.                         Sets the data package size for the system's
  1537.                         mouse or other pointing device, and initializes
  1538.                         the resolution, sampling rate, and scaling to
  1539.                         their default values.
  1540.                         BH      data package size (1 - 8 bytes)
  1541.                         note    After this operation, the state of the
  1542.                                 pointing device is as follows:
  1543.                                 a) disabled;
  1544.                                 b) sample rate at 100 reports per
  1545.                                    second;
  1546.                                 c) resolution at 4 counts per
  1547.                                    millimeter;
  1548.                                 d) scaling set at 1 to 1.
  1549.                 06h     Get Status or Set Scaling Factor
  1550.                         Returns the current status of the system's
  1551.                         mouse or other pointing device or sets the
  1552.                         device's scaling factor.
  1553.                         BH      00h     return device status
  1554.                                 return  BL      status byte
  1555.                                   bits  0       set if right button
  1556.                                                 is pressed
  1557.                                         1       reserved
  1558.                                         2       set if left button
  1559.                                                 is pressed
  1560.                                         3       reserved
  1561.                                         4       0       1:1 scaling
  1562.                                                 1       2:1 scaling
  1563.                                         5       0       device disabled
  1564.                                                 1       device enabled
  1565.                                         6       0       stream mode
  1566.                                                 1       remote mode
  1567.                                         7       reserved
  1568.                                         CL      resolution
  1569.                                                 00h     1 count per mm
  1570.                                                 01h     2 counts per mm
  1571.                                                 02h     4 counts per mm
  1572.                                                 03h     8 counts per mm
  1573.                                         DL      sample rate (hex count)
  1574.                                                 0Ah     10  reports/sec 
  1575.                                                 14h     20  reports/sec
  1576.                                                 28h     40  reports/sec
  1577.                                                 3Ch     60  reports/sec
  1578.                                                 50h     80  reports/sec
  1579.                                                 64h     100 reports/sec
  1580.                                                 0C8h    200 reports/sec
  1581.                                 01h     set scaling to 1:1
  1582.                                 02h     set scaling to 2:1
  1583.                 07h     Set Pointing Device Handler Address
  1584.                         Notifies BIOS pointing device driver of the
  1585.                         address for a routine to be called each time
  1586.                         pointing device data is available.
  1587.                         ES:BX   address of user device handler
  1588.                         return  AL      00h
  1589. return  CF      set on error
  1590.         AH      status
  1591.                 00h     successful
  1592.                 01h     invalid function
  1593.                 02h     invalid input
  1594.                 03h     interface error
  1595.                 04h     need to resend
  1596.                 05h     no device handler installed
  1597. note 1) The values in BH for those functions that take it as input are
  1598.         stored in different locations for each subfunction.
  1599.      2) The user's handler for pointing device data is entered via a
  1600.         FAR call with four parameters on the stack:
  1601.         SS:SP+0Ah    status
  1602.         SS:SP+08h    x coordinate
  1603.         SS:SP+06h    y coordinate
  1604.         SS:SP+04h    z coordinate (always 0)
  1605.          The handler must exit via a far return without removing the
  1606.         parameters from the stack.
  1607.      3) The status parameter word passed to the user's handler is
  1608.         interpreted as follows:
  1609.         bits    0       left button pressed
  1610.                 1       right button pressed
  1611.                 2-3     reserved
  1612.                 4       sign of x data is negative
  1613.                 5       sign of y data is negative
  1614.                 6       x data has overflowed
  1615.                 7       y data has overflowed
  1616.                 8-0Fh   reserved
  1617.  
  1618.  
  1619. Function 0C3h   Enable/Disable Watchdog Timeout
  1620.                 (PS/2 50+, EISA)
  1621. entry   AH      0C3h
  1622.         AL      00h     disable watchdog
  1623.                 01h     enable watchdog
  1624.                         BX      timer counter
  1625. return  CF      set on error
  1626. note 1) The watchdog timer generates an NMI.
  1627.      2) This would be subject to protection with a real OS so temporary
  1628.         masters would not be able to seize the bus forever.
  1629.  
  1630.  
  1631. Function 0C3h   Fail-Safe Timer Control
  1632.                 (EISA)
  1633. entry   AH      0C3h
  1634.         AL      00h     disable fail-safe timer
  1635.         AL      01h     enable fail-safe timer
  1636.                 BX      timer count value
  1637. return  CF      clear   OK
  1638.                 set     invalid input
  1639. note 1) Fn 00h clears WDTIC in the Extended BIOS Data Area.
  1640.      2) Fn 01h puts the timer in Mode 0, enables the fail-safe timer
  1641.         NMI, places the value in BX in the WDTIC.  When BX counts to
  1642.         zero a fail-safe timer NMI is generated.
  1643.  
  1644.  
  1645. Function 0C4h   Programmable Option Select
  1646.                 (PS/2 50+)
  1647. entry   AH      0C4h
  1648.         AL      00h     return base POS register address
  1649.                 01h     enable slot
  1650.                         BL      slot number
  1651.                 02h     enable adapter
  1652. return  CF      set on error
  1653.         DX      base POS register address (if function 00h)
  1654. note 1) Fn 00h returns the base Programmable Option Select register
  1655.         address, enables a slot for setup, or enables an adapter.
  1656.      2) Valid on machines with Micro Channel Architecture (MCA) bus
  1657.         only.
  1658.      3) After a slot is enabled with fn 01h, specific information can
  1659.         be obtained for the adapter in that slot by performing port
  1660.         input operations:
  1661.         Port    Function
  1662.         100h    MCA ID (low byte)
  1663.         101h    MCA ID (high byte)
  1664.         102h    Option Select Byte 1
  1665.             bit 0       0       if disabled
  1666.                         1       if enabled
  1667.         103h    Option Select Byte 2
  1668.         104h    Option Select Byte 3
  1669.         105h    Option Select Byte 4
  1670.                 bits 6-7 are channel check indicators
  1671.         106h    Subaddress Extension (low byte)
  1672.         107h    Subaddress Extension (high byte)
  1673.  
  1674.  
  1675. Function 0C5h   Used by PS/2 Model 50+ and Olivetti MCA machines
  1676.                 Used by Desqview 2.2
  1677.                 Used by Lotus 123 Release 2.2
  1678.                 Used by Microsoft Word 5.0
  1679. note    Functions unknown.  Reported by InfoWorld Nov 13 1989's Micro
  1680.         Channel 386 test as a conflict between the above software
  1681.         packages.  InfoWorld said that Quarterdeck (DESQview) was
  1682.         working on a fix for their product.  No other information.
  1683.  
  1684.  
  1685. Function 0D8h   Access System Information
  1686.                 (EISA)
  1687. entry   AH      0D8h    Read Slot Information
  1688.         AL      00h     (CS specifies 16-bit addressing)
  1689.         AL      80h     (CS specifies 32-bit addressing)
  1690.         CL      slot number (0-63)
  1691. return  AH      status
  1692.                 00h     OK
  1693.                 80h     invalid slot number
  1694.                 82h     extended CMOS RAM corrupted
  1695.                 83h     specified slot is empty
  1696.                 86h     invalid BIOS call
  1697.                 87h     invalid system configuration
  1698.         AL      miscellaneous vendor information byte
  1699.                 bits 7  duplicate IDs exist
  1700.                      6  product ID
  1701.                    5,4  slot type
  1702.                         0,0  expansion slot
  1703.                         0,1  embedded device
  1704.                         1,0  virtual device
  1705.                         1,1  reserved by EISA
  1706.                    3,0  duplicate ID number
  1707.                         0,0,0,0   no duplicated IDs
  1708.                         0,0,0,1   first duplicate ID
  1709.                         -------
  1710.                         1,1,1,1   15th duplicate ID
  1711.         BH      configuration utility, major version number
  1712.         BL      configuration utility, minor version number
  1713.         CH      configuration file, MSD of checksum
  1714.         CL      configuration file, LSD of checksum
  1715.         DH      number of device functions
  1716.         DL      combined function information
  1717.         SI:DI   four byte compressed vendor ID
  1718.         CF      clear   OK
  1719.                 set     error
  1720.                 AH      will be nonzero if an error occurs
  1721.  
  1722.  
  1723. entry   AH      0D8h    Read Function Information
  1724.         AL      01h     (CS specifies 16-bit addressing)
  1725.         AL      81h     (CS specifies 32-bit addressing)
  1726.         CH      function number (0-n-1)
  1727.         CL      slot number (0-63)
  1728.         DS:SI   address pointer for output data
  1729. return  AH      status
  1730.                 00h     OK
  1731.                 80h     invalid slot number
  1732.                 82h     extended CMOS RAM corrupted
  1733.                 83h     specified slot is empty
  1734.                 86h     invalid BIOS call
  1735.                 87h     invalid system configuration
  1736.         DS      segment for return data buffer
  1737.         SI      offset for return data buffer (16 bit)
  1738.        ESI      offset for return data buffer (32 bit)
  1739. note    320-byte data buffer:
  1740.         offset size     description
  1741.         00h     2 words compressed ID
  1742.                         byte 0
  1743.                         bits 7  reserved
  1744.                            6-2  character 1
  1745.                            1-0  character 2
  1746.  
  1747.                         byte 1
  1748.                            7-5  character 2
  1749.                            4-0  character 3
  1750.  
  1751.                         byte 2
  1752.                            7-4  second digit of product number
  1753.                            3-0  first digit of product number
  1754.  
  1755.                         byte 3
  1756.                            7-4  third digit of product number
  1757.                            3-0  product revision number
  1758.         04h     1 word  ID and slot information
  1759.                         byte 0
  1760.                         bits 7  0  no duplicate ID is present
  1761.                                 1  duplicate ID is present
  1762.                              6  0  ID is readable
  1763.                                 1  ID is not readable
  1764.                            5-4  slot type
  1765.                                 0,0  expansion slot
  1766.                                 0,1  embedded slot
  1767.                                 1,0  virtual slot
  1768.                                 1,1  reserved by EISA
  1769.                            3,0  duplicate ID number
  1770.                                 0,0,0,0   no duplicated IDs
  1771.                                 0,0,0,1   first duplicate ID
  1772.                                 -------
  1773.                                 1,1,1,1   15th duplicate ID
  1774.  
  1775.                         byte 1  
  1776.                         bits 7  0  configuration complete
  1777.                                 1  configuration not complete
  1778.                            6-2  reserved by EISA
  1779.                              1  0  EISA IOCHKERR not supported
  1780.                                 1  EISA IOCHKERR supported
  1781.                              0  0  EISA ENABLE not supported
  1782.                                 1  EISA ENABLE supported
  1783.  
  1784.         06h     1 word  configuration file extension revision level
  1785.                         byte 0  minor revision level
  1786.                         byte 1  major revision level
  1787.  
  1788.         07h     13words Selections
  1789.                         byte 0  first selection
  1790.                         byte 1  second selection
  1791.                         ---- -  ----------------
  1792.                         byte 25 twenty-sixth selection
  1793.  
  1794.         022h    1 byte  Function Information
  1795.                         bits 7  0  function is enabled
  1796.                                 1  function is disabled
  1797.                              6  configuration extension free-form data
  1798.                              5  port initialization entries follow
  1799.                              4  port range entries follow
  1800.                              3  DMA entries follow
  1801.                              2  interrupt entries follow
  1802.                              1  memory entries follow
  1803.                              0  type/subtype entries follow
  1804.  
  1805.         023h    80bytes Type and subtype ASCII string
  1806.                         (strings less than 80 characters padded with
  1807.                          zeroes)
  1808.                         byte 0  first ASCII character
  1809.                         byte 1  second ASCII character
  1810.                         ---- -- ----------------------
  1811.                         byte 79 eightieth ASCII character
  1812.  
  1813.         073h    205byts Free-Form Data Field
  1814.                         If Function Information byte 6 IS set, the
  1815.                         next 205 bytes (to the end of the 320-byte data
  1816.                         block) is a free-form data field.  Byte 0 is
  1817.                         the length of the field in bytes, and data
  1818.                         starts with byte 1.
  1819.  
  1820.         073h    63bytes Memory configuration information
  1821.                         (if Function Information bit 6 NOT set)
  1822.                         byte 0
  1823.                         bits 7  0  last entry
  1824.                                 1  more entries follow
  1825.                              6  reserved by EISA
  1826.                              5  0  unshared memory
  1827.                                 1  shared memory
  1828.                            4,3  memory type
  1829.                                 0,0  SYS (base or extended)
  1830.                                 0,1  EXP (expanded)
  1831.                                 1,0  VIR (virtual)
  1832.                                 1,1  OTH (other)
  1833.                              2  reserved by EISA
  1834.                              1  0  not cached
  1835.                                 1  cached
  1836.                              0  0  read only (ROM)
  1837.                                 1  read/write (RAM)
  1838.  
  1839.                         byte 1
  1840.                            7-4  reserved by EISA
  1841.                            3,2  decode size
  1842.                                 0,0  20
  1843.                                 0,1  24
  1844.                                 1,0  32
  1845.                                 1,1  reserved by EISA
  1846.                            1,0  data size (access size)
  1847.                                 0,0  byte
  1848.                                 0,1  word
  1849.                                 1,0  doubleword
  1850.                                 1,1  reserved by EISA
  1851.  
  1852.                         bytes 2-4  memory start address divided by 100h
  1853.  
  1854.                         bytes 5-6  memory size divided by 400h
  1855.  
  1856.                         Up to 8 more 7-byte entries may follow.
  1857.  
  1858.         0B2h    14bytes Interrupt Configuration
  1859.                         (if Function Information bit 6 is NOT set)
  1860.                         byte 0
  1861.                         bits 7  0  last entry
  1862.                                 1  more entries follow
  1863.                              6  0  not shared
  1864.                                 1  shared
  1865.                              5  0  edge triggered
  1866.                                 1  level triggered
  1867.                              4  reserved by EISA
  1868.                            3-0  interrupt (0-F)
  1869.  
  1870.                         byte 1  reserved by EISA
  1871.  
  1872.                         Up to 6 more 2-byte entries may follow.
  1873.  
  1874.         0C0h    4 words DMA Channel Description
  1875.                         (if Function Information bit 6 is NOT set)
  1876.                         byte 0
  1877.                         bits 7  0  last entry
  1878.                                 1  more entries follow
  1879.                              6  0  not shared
  1880.                                 1  shared
  1881.                            5-3  reserved by EISA
  1882.                            2-0  DMA channel number (0-7)
  1883.  
  1884.                         byte 1
  1885.                            7,6  reserved by EISA
  1886.                            5,4  data timing
  1887.                                 0,0  default (ISA competible)
  1888.                                 0,1  type A
  1889.                                 1,0  type B
  1890.                                 1,1  type C (burst mode)
  1891.                            3,2  transfer size
  1892.                                 0,0  8-bit
  1893.                                 0,1  16-bit
  1894.                                 1,0  32-bit
  1895.                                 1,1  reserved by EISA
  1896.                            1,0  reserved by EISA
  1897.  
  1898.                         Up to 3 more 2-byte entries may follow
  1899.  
  1900.         0C8h    60bytes Port I/O Information
  1901.                         byte 0
  1902.                         bits 7  0  last entry
  1903.                                 1  more entries follow
  1904.                              6  0  not shared
  1905.                                 1  shared
  1906.                              5  reserved by EISA
  1907.                            4-0  number of sequential ports, less 1
  1908.  
  1909.                         bytes 1,2  I/O Port Address
  1910.  
  1911.                         Up to 19 more 3-byte entries may follow
  1912.  
  1913.         104h    60bytes Initialization Data
  1914.                         (If Function Information bit 6 is NOT set)
  1915.                         byte 0  Initialization Type
  1916.                         bits 7  0  last entry
  1917.                                 1  more entries follow
  1918.                            6-3  reserved by EISA
  1919.                              2  port value or mask value
  1920.                                 0  write to port without mask
  1921.                                 1  write to port with mask
  1922.                            2,0  type of access
  1923.                                 0,0  byte addressable
  1924.                                 0,1  word addressable
  1925.                                 1,0  doubleword addressable
  1926.                                 1,1  reserved by EISA
  1927.  
  1928.                         bytes 1,2   I/O Port address
  1929.  
  1930.                         bytes 3-10  (Depends on value of byte 0, bit 2)
  1931.                                 if bit=0, bytes 3-6 will have the
  1932.                                 following values based on the access
  1933.                                 type specified by byte 0, bits 0-1:
  1934.  
  1935.                                 byte 0, bits 0-1:
  1936.                                    0,0   this byte 3 - port value
  1937.                                    0,1   this bytes 3,4 - port value
  1938.                                    1,0   this bytes 3-6 - port value
  1939.                                    1,1   reserved by EISA
  1940.  
  1941.                                 if bit=1, bytes 3-10 will have the
  1942.                                 following values based on the access
  1943.                                 type specified by byte 0, bits 0-1:
  1944.  
  1945.                                 byte 0, bits 0-1:
  1946.                                    0,0   this byte 3 - port value
  1947.                                                    4 - port mask
  1948.                                    0,1   this bytes 3,4 - port value
  1949.                                                     5,6 - port mask
  1950.                                    1,0   this bytes 3-6 - port value
  1951.                                                     7-10 - port mask
  1952.                                    1,1   reserved by EISA
  1953.  
  1954.                                 Up to 7 more 4, 5, 7, or 11-byte entries
  1955.                                 may follow.
  1956.  
  1957.  
  1958. entry   AH      0D8h    Clear Configuration Storage
  1959.         AL      02h     (CS specifies 16-bit addressing)
  1960.         AL      82h     (CS specifies 32-bit addressing)
  1961.         BH      configuration utility major revision level
  1962.         BL      configuration utility minor revision level
  1963. return  AH      00h     OK
  1964.                 84h     error writing to extended CMOS RAM
  1965.                 86h     invalid BIOS call
  1966.                 88h     configuration utility not supported
  1967.  
  1968.  
  1969. entry   AH      0D8h    Write Function Information
  1970.         AL      03h     (CS specifies 16-bit addressing)          
  1971.         AL      83h     (CS specifies 32-bit addressing)     
  1972.         CX      length of data structure (in bytes)
  1973.         DS      segment of data buffer
  1974.         SI      offset of data buffer (16-bit)
  1975.        ESI      offset of data buffer (32-bit)
  1976. return  AH      00h     OK
  1977.                 84h     error writing to extended CMOS RAM
  1978.                 85h     CMOS RAM is full
  1979.                 86h     invalid BIOS call
  1980.  
  1981. note    See Function 1 for data fields.
  1982.  
  1983.  
  1984.  
  1985. Function 0DEh   DESQview Services                           (DESQview)
  1986.  
  1987.  
  1988. ┌─────────────────────────────────────────────────────────────────────┐
  1989. │Interrupt 16h  Keyboard I/O                                    3**9  │
  1990. └─────────────────────────────────────────────────────────────────────┘
  1991. (0:0058h)       Access the keyboard.  Scancodes are found in Appendix
  1992.                 1.  ASCII codes are found in Appendix 2.
  1993.  
  1994.                 IBM's original keyboard layout is referred to as the
  1995.                 84-key or "old style".  It has the function keys on the
  1996.                 left and an embedded cursor/numeric keypad on the
  1997.                 right.  The 101-key "new style" or "enhanced" keyboard
  1998.                 (such as used on the PS/2s) adds several keys.  The
  1999.                 early BIOS will not detect the new scancodes and the
  2000.                 new BIOS for some reason added new function calls for
  2001.                 this purpose instead of enhancing the old ones.  This
  2002.                 causes some hassle when writing programs which need to
  2003.                 support both keyboards fully.  Most programs limit
  2004.                 themselves to the 84-key functions in the interest of
  2005.                 backward compatibility.
  2006.  
  2007.                 The SWITCHES CONFIG.SYS command forces DOS 4.0 to use
  2008.                 the standard int 16h requests for keyboard I/O rather
  2009.                 than the extended int 16h requests.
  2010.  
  2011.                 The DOS KEYB command does not hook into the BIOS.  It
  2012.                 is a total replacement for the BIOS int9 driver.  The
  2013.                 only good thing about this is that you can use 101-key
  2014.                 keyboards on old ATs without support for enhanced
  2015.                 keyboards.  KEYB is very peculiar in its handling of
  2016.                 the keyboard, causing some programs to break.  It also
  2017.                 tends to disable interrupts for a long time while
  2018.                 processing each scan code.
  2019.  
  2020.                 There are machines such as the Toshiba 5200 which have
  2021.                 84-key layouts but "simulate" being 101-key, at least
  2022.                 as far as int 16h goes.  (always good for confusing
  2023.                 your software...)
  2024.  
  2025.                 IBM's TopView saved the state of the capslock,
  2026.                 scrollock, and numlock keys during task switches.
  2027.                 DESQview does not save the toggle states unless you
  2028.                 change the default setup.
  2029.  
  2030. Function  00h   Get Keyboard Input
  2031.                 Read the next character in keyboard buffer, if no key
  2032.                 is ready, then wait for one.
  2033. entry   AH      00h
  2034. return  AH      scan code
  2035.         AL      ASCII character
  2036. note 1) Removes keystroke from buffer (destructive read).
  2037.      2) Does not work with the extra keys on the 101-key "enhanced"
  2038.         keyboard.
  2039.  
  2040.  
  2041. Function  01h   Check Keystroke Buffer - Do Not Clear
  2042. entry   AH      01h
  2043. return  ZF      0 (clear) if character in buffer
  2044.                 1 (set)   if no character in buffer
  2045.         AH      scan code of character (if ZF=0)
  2046.         AL      ASCII character if applicable
  2047. note 1) Keystroke is not removed from buffer.  The same character and
  2048.         scan code will be returned by the next call to Int 16h/fn 00h.
  2049.      2) This call flushes the 101-key codes from the buffer if they
  2050.         precede an 84-key code.
  2051.  
  2052.  
  2053. Function  02h   Shift Status
  2054.                 Fetches bit flags indicating shift status.
  2055. entry   AH      02h
  2056. return  AL      status byte (same as [0040:0017])
  2057.            bits 7       Insert on
  2058.                 6       CapsLock on
  2059.                 5       NumLock on
  2060.                 4       ScrollLock on
  2061.                 3       Alt key down
  2062.                 2       Control key down
  2063.                 1       Left shift (left caps-shift key) down
  2064.                 0       Right shift (right caps-shift key) down
  2065. note    The Keyboard Flags Byte is stored in the BIOS Data Area at
  2066.         0000:0417h.
  2067.  
  2068.  
  2069. Function 03h    Keyboard - Set Repeat Rate
  2070.                 (PCjr, AT, XT/286, PS/2)
  2071. entry   AH      03h
  2072.         AL      00h     reset typematic defaults                (PCjr)
  2073.                 01h     increase initial delay                  (PCjr)
  2074.                 02h     decrease repeat rate by 1/2             (PCjr)
  2075.                 03h     increase both delays by 1/2             (PCjr)
  2076.                 04h     turn off typematic                      (PCjr)
  2077.                 05h     set typematic rate                  (AT, PS/2)
  2078.         BH      00h-03h for delays of 250ms, 500ms, 750ms, or 1 second
  2079.                         0,0     250ms
  2080.                         0,1     500ms
  2081.                         1,0     750ms
  2082.                         1,1     1 second
  2083.         BL      00h-1Fh for typematic rates of 30cps down to 2cps
  2084.                         00000 30     01011 10.9   10101 4.5
  2085.                         00001 26.7   01100 10     10110 4.3
  2086.                         00010 24     01101 9.2    10111 4
  2087.                         00011 21.8   01110 8.6    11000 3.7
  2088.                         00100 20     01111 8      11001 3.3
  2089.                         00101 18.5   10000 7.5    11010 3
  2090.                         00110 17.1   10001 6.7    11011 2.7
  2091.                         00111 16     10010 6      11100 2.5
  2092.                         01000 15     10011 5.5    11101 2.3
  2093.                         01001 13.3   10011 5.5    11110 2.1
  2094.                         01010 12     10100 5      11111 2
  2095. return  nothing
  2096. note 1) Subfunction 05h is available on ATs with ROM BIOS dated
  2097.         11/15/85 and later, the XT/286, and the PS/2.
  2098.      2) Subfunction 0 (Return to Default Keyboard State) restores the
  2099.         keyboard to its original state.  An IBM AT's original state at
  2100.         power-on is typematic on, normal initial delay and normal
  2101.         typematic rate.
  2102.      3) Subfunction 1 (Increase Initial Delay) increases the delay
  2103.         between the first character typed and the burst of typematic
  2104.         characters.
  2105.      4) For Subfunctions 0 through 4, each time the typematic rate is
  2106.         changed, all previous states are removed.
  2107.      5) Some clone keyboards (Northgate Omnikey and Focus) and 
  2108.         BIOSES (AMI) have much higher repeat rates for the same bit
  2109.         values.
  2110.  
  2111.  
  2112. Function 04h    Keyboard Click Toggle
  2113.                 (PCjr and Convertible)
  2114. entry   AH      04h
  2115.         AL      00h     for click off
  2116.                 01h     for click on
  2117. return  nothing
  2118.  
  2119.  
  2120. Function 05h    Load Keyboard Buffer
  2121.                 (AT or PS/2 with enhanced kbd)
  2122. entry   AH      05h
  2123.         CH      scan code
  2124.         CL      ASCII character
  2125. return  CF      set on error
  2126.         AL      00h     success
  2127.                 01h     if buffer full
  2128. note    Places a character and scan code at the end of the keyboard
  2129.         type-ahead buffer.
  2130.  
  2131.  
  2132. Function 06h    Keyboard Buffer Write           (Fansi-Console to 2.00)
  2133. entry   AH      06h
  2134.         BX      extended key value to place in typeahead buffer
  2135. return  unknown
  2136. note    This call may be dropped since it now duplicates function 05h.
  2137.  
  2138.  
  2139. Function 07h    Change Shift Key Status         (Fansi-Console to 2.00)
  2140. entry   AH      07h
  2141.         AL      shift key status value
  2142. return  unknown
  2143. note    Status byte is same as function 02h.
  2144.  
  2145.  
  2146. Function 10h    Get Enhanced Keystroke And Read 
  2147.                 (XT/286, PS/2, AT with "Enhanced" keyboard)
  2148. entry   AH      10h
  2149. return  AH      scan code
  2150.         AL      ASCII character if applicable
  2151. note 1) Reads a character and scan code from the keyboard type-ahead
  2152.         buffer.
  2153.      2) Use this function for the enhanced keyboard instead of int 16h
  2154.         fn 00h.  It allows applications to obtain the scan codes for
  2155.         the additional F11, F12, and cursor control keys.
  2156.      3) This is the enhanced version of function 00h.
  2157.  
  2158.  
  2159. Function 11h    Check Enhanced Keystroke
  2160.                 (XT/286, PS/2, AT with "Enhanced" keyboard)
  2161. entry   AH      11h
  2162. return  ZF      0       (clear) if key pressed
  2163.                         AH      scan code
  2164.                         AL      ASCII character if applicable
  2165.                 1       if buffer is empty
  2166. note 1) Keystroke is not removed from buffer.  The same char and scan
  2167.         code will be returned by the next call to Int 16h/fn 10h.
  2168.      2) Use this function for the enhanced keyboard instead of int
  2169.         16h/fn 00h.  It allows applications to test for the additional
  2170.         F11, F12, and cursor control keys.
  2171.  
  2172.  
  2173. Function 12h    Extended Get Shift Status  (F11, F12 Enhanced keyboard)
  2174. entry   AH      12h
  2175. return  AX      status word
  2176.                 AL bit  0       right Shift key depressed
  2177.                         1       left Shift key depressed
  2178.                         2       Control key depressed
  2179.                         3       Alt key depressed
  2180.                         4       ScrollLock state active
  2181.                         5       NumLock state active
  2182.                         6       CapsLock state active
  2183.                         7       insert state is active
  2184.                 AH bit  0       left Control key pressed
  2185.                         1       left Alt key depressed
  2186.                         2       right Control key pressed
  2187.                         3       right Alt key depressed
  2188.                         4       Scroll Lock key depressed
  2189.                         5       NumLock key depressed
  2190.                         6       CapsLock key depressed
  2191.                         7       SysReq key depressed
  2192. note    Use this function for the enhanced keyboard instead of int
  2193.         16h/fn 02h.
  2194.  
  2195.  
  2196. Function  4fh   Gerkey - German keyboard remapper from OVI-SYSTEM
  2197. entry   AH      4Fh     Gerkey function
  2198.         AL      56h     installation check
  2199. return  AX      0FFFFh  installed, otherwise not present
  2200.         BH      major version
  2201.         BL      minor version
  2202.  
  2203.  
  2204. Function  70h, 71h, 72h  Internal Functions    (SEAware's FAKEY.COM)
  2205. note    FAKEY.COM is a TSR keyboard utility distributed to registered
  2206.         users of SEAware products.
  2207.  
  2208.  
  2209. Function  75h   Set Tick Count for Scanning       (pcAnywhere 2.00)
  2210. entry   AH      75h
  2211.         AL      tick count
  2212. return  none
  2213. note 1) Sets count of 55ms timer ticks between checks for new screen
  2214.         changes.
  2215.      2) pcAnywhere is a program that allows operation of a remote
  2216.         machine over a serial link.
  2217.  
  2218.  
  2219. Function  76h   Set Error Checking Mode           (pcAnywhere 2.00)
  2220. entry   AH      76h
  2221.         AL      error checking type
  2222.                 00h     none
  2223.                 01h     fast
  2224.                 02h     slow
  2225. return  none
  2226.  
  2227.  
  2228. Function  77h   reserved                          (pcAnywhere 2.00)
  2229. pcAnywhere API - reserved
  2230.  
  2231.  
  2232. Function  78h   Log Off                           (pcAnywhere 2.00)
  2233. entry   AL      00h     wait for another call
  2234.                 01h     exit but remain TSR
  2235.                 02h     automatic mode - watches DTR
  2236.                 0FFh    leave in current operating mode  (ver. 2.1)
  2237. return  none
  2238.  
  2239.  
  2240. Function  79h   Installation Check                (pcAnywhere 2.00)
  2241. entry   AH      79h
  2242.         AL      00h     installation check
  2243. return  AX      0FFFFh  resident and active
  2244.                 0FFFEh  resident but not active
  2245.                 0FFFDh  resident TSR
  2246.                 0FFFCh  automatic mode
  2247.                 any other value - not resident
  2248.  
  2249.  
  2250. Function  7Ah   Cancel pcAnywhere Session         (pcAnywhere 2.00)
  2251. entry   AH      7Ah
  2252. return  none
  2253. note    Leaves pcAnywhere resident but unable to answer another call.
  2254.  
  2255.  
  2256. Function  7Bh   Enable/Disable Operation          (pcAnywhere 2.00)
  2257. entry   AH      7Bh
  2258.         AL      state
  2259.                 00h     disabled
  2260.                 01h     enabled
  2261. return  none
  2262. note    Remote screen is automatically refreshed when session is enabled.
  2263.  
  2264.  
  2265. Function  7Ch   Get Port Configuration            (pcAnywhere 2.00)
  2266. entry   AH      7Ch
  2267. return  AH      port number in binary (0-15)
  2268.         AL      baud rate
  2269.                 00h     50
  2270.                 01h     75
  2271.                 02h     110
  2272.                 03h     134.5
  2273.                 04h     150
  2274.                 05h     300
  2275.                 06h     600
  2276.                 07h     1200
  2277.                 08h     1800
  2278.                 09h     2000
  2279.                 0Ah     2400
  2280.                 0Bh     4800
  2281.                 0Ch     7200
  2282.                 0Dh     9600
  2283.                 0Fh     19,200
  2284.  
  2285.  
  2286. Function  7Dh   Get/Set Terminal Parameters       (pcAnywhere 2.00)
  2287. entry   AH      7Dh
  2288.         AL      00h     set parameters
  2289.                 01h     get parameters
  2290.                 02h     get configuration header and terminal
  2291.                         parameters
  2292.         CX:DS   address of Terminal Parameter Block
  2293. return  AL      00h     nothing
  2294.                 01h     current Terminal Parameter Block in CX:DS
  2295.                 02h     configuration header and Terminal Parameter
  2296.                         Block in CX:DS
  2297. note    Terminal Parameter Block format:   (1152 bytes) (decimal)
  2298.         384 bytes  CRT Control Information
  2299.                 bytes   function
  2300.                 1-8     cursor up
  2301.                9-16     cursor down
  2302.               17-24     cursor left
  2303.               25-32     cursor right
  2304.               33-40     cursor home
  2305.               41-48     clear screen
  2306.               49-56     clear to end of line
  2307.               57-64     clear to end of page
  2308.               65-72     insert line
  2309.               73-80     delete line
  2310.               81-88     insert character
  2311.               89-96     delete character
  2312.              97-104     cursor position lead in
  2313.             105-112     between row and column
  2314.             113-120     after cursor position
  2315.             121-128     CRT initialization
  2316.         256 bytes  Character Translation Table
  2317.                 translates ASCII characters from host.  Normally
  2318.                 changes IBM graphics characters to other displayable
  2319.                 symbols
  2320.         512 bytes  keyboard sequences
  2321.             641-644     cursor up
  2322.             645-648     cursor down
  2323.             649-652     cursor left
  2324.             653-656     cursor right
  2325.             657-660     home
  2326.             661-664     end
  2327.             665-668     PgUp
  2328.             669-672     PgDn
  2329.             673-676     insert
  2330.             677-680     delete
  2331.             681-684     control-home
  2332.             685-688     control-end
  2333.             689-692     control-PgUp
  2334.             693-696     control-PgDn
  2335.             697-700     escape
  2336.             701-740     F1...F10
  2337.             741-780     sF1...sF10
  2338.             781-820     ^F1...^F10
  2339.             821-860     aF1...aF10
  2340.             861-964     alt A-Z
  2341.            965-1004     alt 0-9
  2342.           1005-1008     alt =
  2343.           1009-1012     alt -
  2344.           1013-1016     print screen
  2345.           1017-1020     ctrl-left arrow
  2346.           1021-1024     ctrl-right arrow
  2347.           1025-1120     reserved
  2348.           1121-1124     begin conv. mode
  2349.           1125-1128     remote printing off
  2350.           1129-1132     remote printing on
  2351.           1133-1136     backspace
  2352.           1137-1140     refresh screen
  2353.           1141-1144     send next code
  2354.           1145-1148     display top 24 lines
  2355.           1149-1152     display bottom 24 lines
  2356.  
  2357.  
  2358. Function  7Eh   Serial I/O Through pcAnywhere Port   (pcAnywhere 2.00)
  2359. entry   AH      7Eh
  2360.         AL      I/O function
  2361.                 01h     get port input status
  2362.                 02h     get port input character
  2363.                 03h     output character
  2364.                 04h     hang up phone
  2365.         CX      ASCII character to output (fn 03h)
  2366. return  (if AL=01h)
  2367.         AX      00h     no character ready
  2368.                 01h     character is available
  2369.         (if AL=02h)
  2370.         AL      ASCII code received
  2371.  
  2372.  
  2373. Function  7Fh   Set Keyboard/Screen Mode            (pcAnywhere 2.00)
  2374. entry   AH      7Fh
  2375.         AL      parameters
  2376.                 00h     enable remote keyboard only  |
  2377.                 01h     enable host keyboard only    |  keyboard group
  2378.                 02h     enable both keyboards        |
  2379.  
  2380.                 08h     display top 24 lines         |  screen group
  2381.                 09h     display bottom 24 lines      |
  2382.  
  2383.                 10h     Hayes modem                  |
  2384.                 11h     other modems                 |  modem group
  2385.                 12h     direct connect               |
  2386.  
  2387.  
  2388. Function 0A5h   Central Point Software PC-Tools PC-CACHE 6.0 and later
  2389. entry   AH      0A5h    installation check
  2390.         AL      0FFh
  2391.         CX      1111h   magic number
  2392. return  CH      00h     installed
  2393. note    DOS Disk Reset call will also flush the cache from mid
  2394.         version 6 on.
  2395.  
  2396. Function 0AFh   Central Point Software PC-Tools PC-CACHE 5.x
  2397. entry   AH      0AFh    flush cache
  2398.         AL      0FFh
  2399.         CX      0FFFFh  magic number
  2400. return  unknown
  2401. note    This is safe, even if PC Cache in not installed.
  2402.  
  2403.  
  2404. Function 0EDh   Borland Turbo Lightning API  (partial)
  2405. entry   AH      0EDh
  2406.         BH      0EDh
  2407.         BL      function
  2408.                 00h     installation check
  2409.                 02h     pointer to Lightning internal data structure
  2410.                         low byte
  2411.                 03h     pointer to Lightning internal data structure
  2412.                         high byte
  2413.                 04h     load auxiliary dictionary
  2414.                 06h     autoproof mode
  2415.                 0Fh     get number of substitutions (segment)
  2416.         DS:DI   pointer to string to be processed
  2417. return  AX      error code (unknown)
  2418. note    I've made several attempts to get a copy of the Turbo
  2419.         Lightning API, which was originally supposed to be available
  2420.         for developers in 1985.  In 1988 Borland sent me a letter
  2421.         saying they were still working on it.  In late 1989 the Borland
  2422.         rep on BIX told me basically that there were no plans for
  2423.         releasing the API any more.  The information here was dredged
  2424.         from Chris Dunford's LSPELL.PAS interface into Lighting.
  2425.  
  2426.  
  2427. Function 0F0h   Set CPU speed                            (Compaq 386)
  2428. entry   AH      0F0h    set speed
  2429.         AL      speed
  2430.                 00h     equivalent to 6 mHz 80286 (COMMON)
  2431.                 01h     equivalent to 8 mHz 80286 (FAST)
  2432.                 02h     full 16 mHz (HIGH)
  2433.                 03h     toggles between 8 MHz-equivalent and speed
  2434.                         set by system board switch (AUTO or HIGH)
  2435.                 04h-07h unknown
  2436.                 08h     full 16 MHz except 8 MHz-equivalent during
  2437.                         floppy disk access
  2438.                 09h     specify speed directly
  2439.                         CX      speed value, 1 (slowest) to 50 (full),
  2440.                                 3 ~=8088
  2441. return  none?
  2442. note 1) Used by Compaq DOS MODE command.
  2443.  
  2444.  
  2445. Function 0F1h   Read Current CPU Speed                    (Compaq 386)
  2446. entry   AH      0F1h
  2447. return  AL      speed code (see function 0F0h above)
  2448.                 if AL=09h, CX=speed code
  2449.  
  2450.  
  2451. Function 0F2h   Determine Attached Keyboard Type          (Compaq 386)
  2452. entry   AH      0F2h
  2453. return  AL      type
  2454.                 00h     if 11-bit AT keyboard is in use
  2455.                 01h     if 9-bit PC keyboard is in use
  2456.  
  2457.  
  2458. Function 0FFh   PC-Tools API
  2459. entry   AH      0FFh
  2460.         AL      0A5h    detect PC-Cache disk cache (ver 5.0 & later)
  2461.                 CH      11h
  2462.                 CL      11h
  2463. return  CH      00h     cache is present
  2464. note    PC-Tools is a Swiss-army-knife software package with an
  2465.         editor, DOS shell, cache, disk optimizer, and several other
  2466.         functions from Central Point Software.
  2467.  
  2468.  
  2469. Function 0FFh   PC-Tools API
  2470. entry   AH      0AFh
  2471.         AL      0AFh    flush PC-Cache disk cache (from mid-version-6)
  2472.                 CH      0FFh
  2473.                 CL      0FFh
  2474. return  none
  2475. note    PC-Tools is a Swiss-army-knife software package with an
  2476.         editor, DOS shell, cache, disk optimizer, and several other
  2477.         functions from Central Point Software.
  2478.  
  2479.  
  2480. Function 0FFh   2-The-Max VGA-16 Board
  2481. entry   AH      0FFh    query zoom interrupt
  2482. return  AL      zoom interrupt number
  2483.         AL+1    old BIOS keyboard handler interrupt number
  2484.         BX      hot key
  2485.  
  2486.  
  2487. Function 0FFh   Programmer Interface to Carbon Copy Plus (5.0)
  2488. entry   AH      0FFh
  2489.         AL      00h     check connection between CC and CCHELP
  2490. return  BL      00h     Carbon Copy not connected to CCHELP
  2491.                 01h     Carbon Copy is connected to CCHELP
  2492.  
  2493. entry   AL      01h     disconnects and resets the line if the Host
  2494.                         or CC side is connected to CCHELP
  2495.  
  2496. entry   AL      02h     return a pointer to the last phone number
  2497.                         dialed by CC
  2498. return  ES:DI           dword pointer to ASCIIZ phone number string
  2499.  
  2500.  
  2501.  
  2502. ┌────────────────────────────────────────────────────────────────────┐
  2503. │Interrupt 17h  Printer                                        3**10 │
  2504. └────────────────────────────────────────────────────────────────────┘
  2505. (0:005Ch)       Access the parallel printer(s)
  2506.                 AH is changed.  All other registers left alone.
  2507.  
  2508.                 Printer ports vary widely in compatibility, since the
  2509.                 original IBM MDA's parallel port did not match its own
  2510.                 spec.  Many parallel ports do not use IRQ7 at all.
  2511.  
  2512.                 The parallel port on a monochrome adapter is at 3BCh.
  2513.                 The port on a parallel printer adapter is at 378h or
  2514.                 278h.  At boot time, the BIOS looks at them in the
  2515.                 order 3BCh, 378h, 278h, and assigns the first port it
  2516.                 finds to LPT1, the second to LPT2, etc.  If you have a
  2517.                 monochrome adapter, LPT1 is probably 3BCh; otherwise,
  2518.                 it is probably 378h.
  2519.  
  2520.  
  2521. Function  00h   Print Character/send AL to printer DX (0, 1, or 2)
  2522. entry   AH      00h
  2523.         AL      ASCII character code
  2524.         DX      printer to be used
  2525.                 00h     PRN or LPT1
  2526.                 01h     LPT2
  2527.                 02h     LPT3
  2528. return  AH      status byte
  2529.            bits 0       time out
  2530.                 1       unused
  2531.                 2       unused
  2532.                 3       I/O error
  2533.                 4       printer selected
  2534.                 5       out of paper
  2535.                 6       acknowledge
  2536.                 7       not busy
  2537.  
  2538.  
  2539. Function 01h    Initialize Printer
  2540.                 Set init line low, send 0Ch to printer DX
  2541. entry   AH      01h
  2542.         DX      printer port to be initialized (0,1,2)
  2543. return  status as below
  2544.  
  2545.  
  2546. Function  02h   Printer Status
  2547.                 Read status of printer DX into AH
  2548. entry   AH      02h
  2549.         DX      printer port to be used (0,1,2)
  2550. return  AH      status byte
  2551.            bits 7       0       busy/paused: the printer cannot
  2552.                                 immediately take more data because it
  2553.                                 is in the middle of accepting a
  2554.                                 character, printing a line, is
  2555.                                 offline, or it is in error status.
  2556.                         1       ready
  2557.                 6   ACKnowledge line toggled: reflects the state of
  2558.                     the ACK line on the printer port at the moment the
  2559.                     status was read.  ACK is a strobe: it goes low for
  2560.                     a very short time (12 microseconds on an Epson)
  2561.                     when the printer is ready for another character.
  2562.                     As far as printer status is concerned, this is
  2563.                     useless; it's only useful for something like an
  2564.                     interrupt-driven interface.  Most of the time,
  2565.                     you'll see ACK high (bit 6 on), but occasionally,
  2566.                     if you check status just after sending a character,
  2567.                     you might see it low.  ACK is low when the printer
  2568.                     is powered off.
  2569.                 5   out-of-paper line toggled
  2570.                 4   printer selected: printer is selected, ready, 
  2571.                     or, online.  There is usually a button on the
  2572.                     printer to control this.
  2573.                 3   I/O error: offline, out of paper or other error
  2574.                     condition such as out of ribbon.
  2575.                 2   unused
  2576.                 1   unused
  2577.                 0   timeout error: printer failed to send ACK and
  2578.                     drop busy after being sent a character.
  2579. note 1) You can expect to see these states in a properly functioning
  2580.         printer:
  2581.         Normal                Offline                Power off
  2582.         ======                =======                =========
  2583.         not busy/paused       busy/paused            busy/paused
  2584.         not out of paper      not out of paper       not out of paper
  2585.         selected/online       not selected/online    not selected/online
  2586.         not I/O error         I/O error (usually)    I/O error
  2587.         not timeout error     not timeout error      not timeout error
  2588.      2) Not all printers return the status codes properly.  That's OK,
  2589.         not all clone BIOSes do it right either.  If your program
  2590.         depends on the return codes, you might want to make the code
  2591.         easily patched or configured for nonstandard hardware.
  2592.  
  2593.  
  2594. Function   03h  Versa-Spool print spooler
  2595. entry   AH      03h     Versa-Spool
  2596.         AL      00h     Return Signature
  2597.                 01h     Toggle Pause
  2598.                 02h     Clear Buffer
  2599.                 03h     Request Pause Condition
  2600.                 04h     Request Free Buffer Space
  2601.                 05h     Request Total Buffer Size
  2602.                 06h     Redirect Output to LPT1
  2603.                 07h     Redirect Output to LPT2
  2604.                 08h     Redirect Output to LPT3
  2605.                 09h     Request Output Device
  2606.                 0Ah     Request Output Speed
  2607.                 0Bh     Request Device Spooled Status
  2608.  
  2609. return  (AH=00h)        AX      1234h   if Versa-Spool is installed
  2610.                                         undefined if not installed
  2611.         (AH=01h)        AX      0001h   if paused
  2612.                                 0000h   if resumed
  2613.         (AH=02h)        AX      0302h   not cleared
  2614.                                 0000h   cleared
  2615.         (AH=03h)        AX      0001h   if paused
  2616.                                 0000h   if resumed
  2617.         (AH=04h)        AX      remaining buffer space (in Kbytes)
  2618.         (AH=05h)        AX      total buffer space (in Kbytes)
  2619.         (AH=06h)        AX      nothing
  2620.         (AH=07h)        AX      nothing
  2621.         (AH=08h)        AX      nothing
  2622.         (AH=09h)        AX      printer output (0..2)
  2623.         (AH=0Ah)        AX      output speed in CPS
  2624.         (AH=0Bh)        AX      0001h   is spooled
  2625.                                 0000h   otherwise
  2626.  
  2627.  
  2628. Function  03h   Print String                             (PC-MOS/386)
  2629.         Print an entire string with one interrupt call
  2630. entry   AH      03h
  2631.         CX      number of characters in string
  2632.         DX      printer port number
  2633.         DS:SI   pointer to string
  2634. return  AH      status code (same as PC BIOS)
  2635.         CX      number of characters printed
  2636. note 1) Any redirection set up with the MOS ROUTE command or
  2637.         SPOOL.COM will be in effect.
  2638.      2) Some serial terminals so not provide printer status feedback.
  2639.  
  2640.  
  2641. Function  0C0h  PC Magazine PCSPOOL - get printer status
  2642. entry   AH      0C0h
  2643.         DX      printer port to be used (0,1,2)
  2644. return  ES:BX   address of printer control block
  2645. note    PC Magazine, January 15, 1991. (Vol 10, Number 1)
  2646.  
  2647.  
  2648. Function  0C1h  PC Magazine PCSPOOL - add pause to spool queue
  2649. entry   AH      0C1h
  2650.         DX      printer port to be used (0,1,2)
  2651.         DS:SI   pointer to ASCIIZ string to display
  2652. return  AH      printer status
  2653.  
  2654.  
  2655. Function  0C2h  PC Magazine PCSPOOL - flush queue record
  2656. entry   AH      0C2h
  2657.         DX      printer port to be used (0,1,2)
  2658. return  AH      printer status
  2659.  
  2660.  
  2661. Function  0C3h  PC Magazine PCSPOOL - cancel printer queue
  2662. entry   AH      0C3h
  2663.         DX      printer port to be used (0,1,2)
  2664. return  AH      printer status
  2665.  
  2666.  
  2667. Function  0C4h  PC Magazine PCSPOOL - determine of spooler is active
  2668. entry   AH      0C4h
  2669. return  DI      0B0BFh  if PCSPOOL is loaded
  2670.         SI      segment of the PSP of the active PCSPOOL
  2671.  
  2672.  
  2673. ┌─────────────────────────────────────────────────────────────────────┐
  2674. │Interrupt 18h  ROM BASIC                                       3**11 │
  2675. └─────────────────────────────────────────────────────────────────────┘
  2676. (0:0060h)       Execute ROM BASIC at address 0F600h:0000h
  2677. entry   no parameters used
  2678. return  jumps into ROM BASIC on IBM systems
  2679. note 1) Often reboots a compatible.
  2680.      2) Used by Turbo C 1.5. 2.0 and later do not use it.
  2681.      3) On IBM systems, this interrupt is called if disk boot failure
  2682.         occurs.
  2683.      4) Video interrupt on DEC Rainbow.
  2684.      5) Digital Research's ROM-based implementation of DR-DOS uses int
  2685.         18h as the initial entry vector into the operating system code.
  2686.         Note that some clone BIOSes may not properly implement int 18h
  2687.         in the ROM and use of DR-DOS ROMs may not always work.
  2688.      6) Maxon 286/HD laptop: called by BIOS power management routines
  2689.         to communicate with applications.
  2690.  
  2691.  
  2692.  
  2693. ┌─────────────────────────────────────────────────────────────────────┐
  2694. │Interrupt 19h  Bootstrap Loader / Extended Memory VDISK ID     3**12 │
  2695. └─────────────────────────────────────────────────────────────────────┘
  2696. (0:0064h)
  2697. entry   no parameters used
  2698. return  none
  2699. note 1) Reads track 0, sector 1 into address 0000h:7C00h, then
  2700.         transfers control to that address.  If no diskette drive is
  2701.         available, scans memory from C:000 to F:000 for a valid hard
  2702.         disk or other ROM. If none, transfers to ROM-BASIC via int 18h
  2703.         or displays loader error message.
  2704.      2) Causes reboot of disk system if invoked while running.
  2705.         (no memory test performed).
  2706.      3) If location 0000:0472h does not contain the value 1234h, a
  2707.         memory test (POST) will be performed before reading the boot
  2708.         sector.
  2709.      4) VDISK from DOS 3.0+ traps this vector to determine when the
  2710.         CPU has shifted from protected mode to real mode.  A detailed
  2711.         discussion can be found by Ray Duncan in PC Magazine, May 30,
  2712.         1989.
  2713.      5) Reportedly, some versions of DOS 2.x and all versions of DOS
  2714.         3.x+ intercept int 19h in order to restore some interrupt
  2715.         vectors DOS takes over, in order to put the machine back to a
  2716.         cleaner state for the reboot, since the POST will not be run on
  2717.         the int 19h.  These vectors are reported to be: 02h, 08h, 09h,
  2718.         0Ah, 0Bh, 0Ch, 0Dh, 0Eh, 70h, 72h, 73h, 74h, 75h, 76h, and 77h.
  2719.         After restoring these, it restores the original int 19h vector
  2720.         and calls int 19h.
  2721.      6) The system checks for installed ROMs by searching memory from
  2722.         0C000h to the beginning of the BIOS, in 2k chunks.  ROM memory
  2723.         is identified if it starts with the word 0AA55h.  It is
  2724.         followed a one byte field length of the ROM (divided by 512).
  2725.         If ROM is found, the BIOS will call the ROM at an offset of 3
  2726.         from the beginning.  This feature was not supported in the
  2727.         earliest PC machines.  The last task turns control over to the
  2728.         bootstrap loader (assuming the floppy controller is
  2729.         operational).
  2730.      7) 8255 port 60h bit 0 = 1 if booting from diskette.
  2731.      8) All IBM BIOSes and most clone BIOSes will try to boot from
  2732.         floppy A: if no other boot device is present.  Some machines
  2733.         (notably mil-spec Zeniths) have a jumper to prohibit booting
  2734.         from floppy at all, for "security reasons".  Many Tandy
  2735.         machines will try to boot from drive B: if the F2 key is held
  2736.         down during POST.  With a CompatiCard floppy controller you
  2737.         can boot off ANY drive.
  2738.      9) Phoenix BIOSes with password protection enabled use this call
  2739.         for the password routine.
  2740.     10) With early versions of DOS 5.0, int 19h fails with EMM386.EXE
  2741.         loaded and and DOS=HIGH in CONFIG.SYS
  2742.  
  2743.  
  2744. ┌─────────────────────────────────────────────────────────────────────┐
  2745. │Interrupt 1Ah  Time of Day                                     3**13 │
  2746. └─────────────────────────────────────────────────────────────────────┘
  2747.  
  2748. (0:0068h)    1) Accesses the PC internal clock.
  2749.              2) This interrupt is not supported on some machines, such
  2750.                 as the HP150 PC.
  2751.              3) Some "turbo" BIOSes run the clock slower than normal in
  2752.                 order to throw off benchmark software, which usually
  2753.                 uses int 1Ah for timekeeping.
  2754.              4) Counts occur at the rate of 1193180/65536 counts/sec
  2755.                 (about 18.2 per second).
  2756.  
  2757. Function 00h    Read System Timer Tick Counter            (except PC)
  2758. entry   AH      00h
  2759. return  AL      00h     if clock was read or written (via AH=0,1)
  2760.                         within the current 24-hour period.
  2761.                 <>0     midnight was passed since last read
  2762.         CX:DX   32-bit tick count (high 16 bits in CX)
  2763. note 1) The returned value is the cumulative number of clock ticks
  2764.         since midnight.  There are 18.2 clock ticks per second, or one
  2765.         every 54.92ms.  When the counter reaches 1,573,040, it is
  2766.         cleared to zero, and the rollover flag is set.
  2767.      2) The rollover flag is cleared by this function call, so the
  2768.         flag will only be returned nonzero once per day.
  2769.      3) Int 1Ah/fn 01h can be used to set the counter to an arbitrary
  2770.         32 bit value.
  2771.      4) This function does not return seconds/100 in DL. The best you
  2772.         can do is set it to zero (or any value <=99).  This means that
  2773.         your DOS clock could be up to 1 second off from the BIOS
  2774.         clock, however the effect is not cumulative.
  2775.  
  2776.  
  2777. Function 01h    Set Clock Tick Counter Value              (except PC)
  2778. entry   AH      01h
  2779.         CX:DX   32-bit high word/low word count of timer ticks
  2780. return  none
  2781. note 1) The clock ticks are incremented by timer interrupt at 18.2065
  2782.         times per second or 54.9254 milliseconds/count. Therefore:
  2783.                 counts per second   18      (12h)
  2784.                 counts per minute   1092    (444h)
  2785.                 counts per hour     65543   (10011h)
  2786.                 counts per day      1573040 (1800B0h)
  2787.      2) The counter is zeroed when system is rebooted.
  2788.      3) Stores a 32-bit value in the clock tick counter.
  2789.      4) The rollover flag is cleared by this call.
  2790.  
  2791.  
  2792. Function 02h    Read Real Time Clock Time
  2793.                 (AT and after)
  2794. entry   AH      02h
  2795. return  CH      hours in BCD
  2796.         CL      minutes in BCD
  2797.         DH      seconds in BCD
  2798.         DL      00h     standard time
  2799.                 01h     daylight savings time
  2800.         CF      0       if clock running
  2801.                 1       if clock not operating
  2802. note 1) Reads the current time from the CMOS time/date chip.
  2803.      2) Also for Leading Edge Model M.
  2804.      3) According to Phoenix this call will fail if the BIOS is
  2805.         "updating" its clock value.  You should check the carry flag
  2806.         and retry if it is set following the call.
  2807.  
  2808.  
  2809. Function 03h    Set Real Time Clock Time
  2810.                 (AT and after)
  2811. entry   AH      03h
  2812.         CH      hours in BCD
  2813.         CL      minutes in BCD
  2814.         DH      seconds in BCD
  2815.         DL      0 (clear) if standard time
  2816.                 1 (set)   if daylight savings time option
  2817. return  none
  2818. note 1) Sets the time in the CMOS time/date chip.
  2819.      2) Also for Leading Edge Model M.
  2820.  
  2821.  
  2822. Function 04h    Read Real Time Clock Date
  2823.                 (AT and after)
  2824. entry   AH      04h
  2825. return  CH      century in BCD (19 or 20)
  2826.         CL      year in BCD
  2827.         DH      month in BCD
  2828.         DL      day in BCD
  2829.         CF      0 (clear) if clock is running
  2830.                 1 (set)   if clock is not operating
  2831. note 1) Reads the current date from the CMOS time/date chip.
  2832.      2) Also for Leading Edge Model M.
  2833.  
  2834.  
  2835. Function 05h    Set Real Time Clock Date
  2836.                 (AT and after)
  2837. entry   AH      05h
  2838.         CH      century in BCD (19 or 20)
  2839.         CL      year in BCD
  2840.         DH      month in BCD
  2841.         DL      day in BCD
  2842. return  none
  2843. note 1) Sets the date in the CMOS time/date chip.
  2844.      2) Also for Leading Edge Model M with Leading Edge DOS 2.11.
  2845.  
  2846.  
  2847. Function 06h    Set Real Time Clock Alarm
  2848.                 (AT and after)
  2849. entry   AH      06h
  2850.         CH      hours in BCD
  2851.         CL      minutes in BCD
  2852.         DH      seconds in BCD
  2853. return  CF      set if alarm already set or clock inoperable
  2854. note 1) Sets alarm in the CMOS date/time chip.  Int 4Ah occurs at the
  2855.         specified alarm time every 24hrs until reset with Int 1Ah
  2856.         function 07h.
  2857.      2) A side effect of this function is that the clock chip's
  2858.         interrupt level (IRQ8) is enabled.
  2859.      3) Only one alarm may be active at any given time.
  2860.      4) The program using this function must place the address of its
  2861.         interrupt handler for the alarm in the vector for Int 4Ah.
  2862.  
  2863.  
  2864. Function 07h    Reset Real Time Clock Alarm
  2865.                 (AT and after)
  2866. entry   AH      07h
  2867. return  none
  2868. note 1) Cancels any pending alarm request on the CMOS date/time chip.
  2869.      2) This function does not disable the clock chip's interrupt
  2870.         level (IRQ8).
  2871.  
  2872.  
  2873. Function 08h    Set Real Time Clock Activated Power On Mode
  2874.                 (Convertible)
  2875. entry   AH      08h
  2876.         CH      hours in BCD
  2877.         CL      minutes in BCD
  2878.         DH      seconds in BCD
  2879.  
  2880.  
  2881. Function 09h    Read Real Time Clock Alarm Time and Status
  2882.                 (Convertible and PS/2 Model 30)
  2883. entry   AH      09h
  2884. return  CH      hours in BCD
  2885.         CL      minutes in BCD
  2886.         DH      seconds in BCD
  2887.         DL      alarm status:
  2888.                 00h     if alarm not enabled
  2889.                 01h     if alarm enabled but will not power up system
  2890.                 02h     if alarm will power up system
  2891.  
  2892.  
  2893. Function 0Ah    Read System-Timer Day Counter
  2894.                 (PS/2)
  2895. entry   AH      0Ah
  2896. return  CF      set on error
  2897.         CX      count of days since Jan 1,1980
  2898. note    Returns the contents of the system's day counter.
  2899.  
  2900.  
  2901. Function 0Bh    Set System-Timer Day Counter
  2902.                 (PS/2)
  2903. entry   AH      0Bh
  2904.         CX      count of days since Jan 1,1980
  2905. return  CF      set on error
  2906. note    Stores an arbitrary value in the system's day counter.
  2907.  
  2908.  
  2909. Function 80h    Set Up Sound Multiplexor
  2910.                 (PCjr) (Tandy 1000?)
  2911. entry   AH      80h
  2912.         AL      sound source
  2913.                 00h     source is 8253 timer chip, channel 2
  2914.                 01h     source is cassette input
  2915.                 02h     source is I/O channel "audio in" line
  2916.                 03h     source is TI sound generator chip
  2917. return  none
  2918. note    Sets up the source for tones that will appear on the PCjr's
  2919.         Audio Out bus line or RF modulator.
  2920.  
  2921.  
  2922. Function 81h    Get Sound status                    (Tandy 1000RL)
  2923.         parameters unknown
  2924.  
  2925.  
  2926. Function 82h    Input Sound (from the microphone)   (Tandy 1000RL)
  2927.         parameters unknown
  2928.  
  2929.  
  2930. Function 83h    Output Sound (to the speaker)       (Tandy 1000RL)
  2931.         parameters unknown
  2932.  
  2933.  
  2934. Function 84h    Stop Sound input and output          (Tandy 1000RL)
  2935.         parameters unknown
  2936.  
  2937.  
  2938. Function 1Ah    Read Time and Date                      (AT&T 6300)
  2939. entry   AH      0FEh
  2940. return  BX      days count (1=Jan 1, 1984)
  2941.         CH      hours
  2942.         CL      minutes
  2943.         DH      seconds
  2944.         DL      hundredths
  2945. note    Day count in BX is unique to AT&T/Olivetti computers.
  2946.  
  2947.  
  2948.  
  2949. ┌─────────────────────────────────────────────────────────────────────┐
  2950. │Interrupt 1Bh  Control-Break                                   3**14 │
  2951. └─────────────────────────────────────────────────────────────────────┘
  2952. (0:006Ch)       This interrupt is called when the keyboard handler
  2953.                 detects Ctrl and Break pressed at the same time.  DOS
  2954.                 normally points this interrupt at its own Ctrl-Break
  2955.                 handler.
  2956.  
  2957. note 1) If the break occurred while processing an interrupt, one or
  2958.         more end of interrupt commands must be send to the 8259
  2959.         Programmable Interrupt Controller.
  2960.      2) All I/O devices should be reset in case an operation was
  2961.         underway at the time.
  2962.      3) It is normally pointed to an IRET during system initialization
  2963.         so that it does nothing, but some programs change it to return
  2964.         a Ctrl-C scan code and thus invoke int 23h.
  2965.  
  2966.  
  2967.  
  2968. ┌─────────────────────────────────────────────────────────────────────┐
  2969. │Interrupt 1Ch  Timer Tick                                      3**15 │
  2970. └─────────────────────────────────────────────────────────────────────┘
  2971. (0:0070h)
  2972. note 1) Taken 18.2065 times per second by the int 08h interrupt.
  2973.      2) Normally vectors to dummy IRET unless PRINT.COM has been
  2974.         installed.
  2975.      3) If an application moves the interrupt pointer, it is the
  2976.         responsibility of that application to save and restore all
  2977.         registers that may be modified.
  2978.      4) returns values at absolute address 40:6x (BIOS Data Area);
  2979.         number of ticks since midnight
  2980.         40:6C   word    timer counter high word
  2981.         40:6E   word    timer counter low word
  2982.      5) Ventura Publisher 2.0 grabs this interrupt and does not pass
  2983.         subsequent vector reassignments along.  This causes problems
  2984.         with some TSRs and network software.
  2985.      6) When installing a user interrupt for int 1Ch, the external
  2986.         interrupts must be disabled before the vector is altered.  If a
  2987.         timer interrupt occurs between the setting of the offset and
  2988.         segment, an incorrect address will result.
  2989.  
  2990.  
  2991. ┌─────────────────────────────────────────────────────────────────────┐
  2992. │Interrupt 1Dh  Vector of Video Initialization Parameters       3**16 │
  2993. └─────────────────────────────────────────────────────────────────────┘
  2994. (0:0074h)       This doubleword address points to 3 sets of 16 bytes
  2995.                 containing data to initialize for video modes for video
  2996.                 modes 0 & 1 (40 column), 2 & 3 (80 column), and 4, 5 &
  2997.                 6 (graphics) on the Motorola 6845 CRT controller chip.
  2998.  6845 registers:
  2999.         R0      horizontal total          (horizontal sync in characters)
  3000.         R1      horizontal displayed                (characters per line)
  3001.         R2      horizontal sync position     (move display left or right)
  3002.         R3      sync width   (vertical and horizontal pulse: 4-bits each)
  3003.         R4      vertical total                    (total character lines)
  3004.         R5      vertical adjust          (adjust for 50 or 60 Hz refresh)
  3005.         R6      vertical displayed             (lines of chars displayed)
  3006.         R7      vertical sync position         (lines shifted up or down)
  3007.         R8      interlace (bits 4 and 5) and skew (bits 6 and 7)
  3008.         R9      max scan line addr         (scan lines per character row)
  3009.         R10     cursor start               (starting scan line of cursor)
  3010.         R11     cursor stop                  (ending scan line of cursor)
  3011.         R12     video memory start address high byte             (6 bits)
  3012.         R13     video memory start address low byte              (8 bits)
  3013.         R14     cursor address high byte                         (6 bits)
  3014.         R15     cursor address low byte                          (8 bits)
  3015.  
  3016.  6845 Video Init Tables:
  3017.         table for modes 0 and 1   \
  3018.         table for modes 2 and 3    \ each table is 16 bytes long and
  3019.         table for modes 4,5, and 6 / contains values for 6845 registers
  3020.         table for mode 7          /
  3021.       4 words   size of video RAM for modes 0/1, 2/3, 4/5, and 6/7
  3022.       8 bytes   number of columns in each mode
  3023.       8 bytes   video controller mode byte for each mode
  3024. note 1) There are four separate tables, and all four must be
  3025.         initialized if all  video modes will be used.
  3026.      2) The power-on initialization code of the computer points this
  3027.         vector to the ROM BIOS video routines.
  3028.      3) IBM recommends that if this table needs to be modified, it
  3029.         should be copied into RAM and only the necessary changes made.
  3030.  
  3031.  
  3032.  
  3033.  
  3034. ┌─────────────────────────────────────────────────────────────────────┐
  3035. │Interrupt 1Eh  Vector of Diskette Controller Parameters        3**17 │
  3036. └─────────────────────────────────────────────────────────────────────┘
  3037. (0:0078h)       Dword address points to data base table that is used by
  3038.                 BIOS.  Default location is at 0F000:0EFC7h.  11-byte
  3039.                 table format:
  3040.           bytes:
  3041.                 00h     4-bit step rate, 4-bit head unload time
  3042.                 01h     7-bit head load time, 1-bit DMA flag
  3043.                 02h     54.9254 ms ticks - delay til motor off (36-38
  3044.                         typical)
  3045.                 03h     sector size:
  3046.                         00h     128 bytes
  3047.                         01h     256 bytes
  3048.                         02h     512 bytes
  3049.                         03h     1024 bytes
  3050.                 04h     last sector on track            (8 or 9 typical)
  3051.                 05h     inter-sector gap on read/write      (42 typical)
  3052.                 06h     data length for DMA transfers     (0FFh typical)
  3053.                 07h     gap length between sectors for format   (80 typ)
  3054.                 08h     sector fill byte for format       (0F6h typical)
  3055.                 09h     head settle time (in milliseconds)
  3056.                                                       (15 to 25 typical)
  3057.                         DOS 1.0   0
  3058.                         DOS 1.10  0
  3059.                         DOS 2.10  15
  3060.                         DOS 3.1   1
  3061.                 0Ah     motor start time (in 1/8 sec intervals)
  3062.                         (2-4 typical)
  3063.                         DOS 2.10  2
  3064. note 1) This vector is pointed to the ROM BIOS diskette tables on
  3065.         system initialization
  3066.      2) IBM recommends that if this table needs to be modified, it
  3067.         should be copied into RAM and only the necessary changes made.
  3068.      3) Some versions of DOS 3.2 may contain a bug.  DOS 3.2 assumes
  3069.         that the dword at 0070:0F37 contains the address of the
  3070.         diskette parameter block and changes values in that block.  The
  3071.         location does contain a copy of the value at 0:78 (int 1Eh,
  3072.         DISK_POINTER) if DOS is booted from diskette, but when booted
  3073.         from the hard disk, the location contains 0:0.  This leads to
  3074.         strange things, especially when running under a debugger since
  3075.         DOS overwrites parts of the interrupt vectors for interrupts 1
  3076.         to 3.  The solution to the problem is to either upgrade to DOS
  3077.         3.3 or to copy the disk parameter vector to 70:0F37 before
  3078.         running or at the start of your program.
  3079.  
  3080.  
  3081.  
  3082. ┌─────────────────────────────────────────────────────────────────────┐
  3083. │Interrupt 1Fh  Ptr to Graphic Char Extensions (Graphics Set 2) 3**18 │
  3084. └─────────────────────────────────────────────────────────────────────┘
  3085. (0:007Ch)       This is the pointer to data used by the ROM video
  3086.                 routines to display characters above ASCII 127 while in
  3087.                 CGA medium and high res graphics modes.
  3088.  
  3089. note 1) Doubleword address points to 1K table composed of 28 8-byte
  3090.         character definition bit-patterns.  First byte of each entry is
  3091.         top row, last byte is bottom row.
  3092.      2) The first 128 character patterns are located in system ROM.
  3093.      3) This vector is set to 000:0 at system initialization.
  3094.      4) Used by DOS' external GRAFTABL command.
  3095.  
  3096.  
  3097.  
  3098.